bug-mailutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [bug-mailutils] mail -f option processing


From: Helmut Leitner
Subject: Re: [bug-mailutils] mail -f option processing
Date: Wed, 25 Jan 2006 10:02:51 +0100
User-agent: Mozilla Thunderbird 1.0 (Windows/20041206)

sorry,

Helmut Leitner wrote:
      else if(state->argv[state->next][0] >= '-')

this should be
       else if(state->argv[state->next][0] > '-')

or more to the point
       else if(
         (state->argv[state->next][0] != '\0') &&
         (state->argv[state->next][0] != '-')
       )

--
Helmut Leitner    address@hidden
Graz, Austria   www.hls-software.com





reply via email to

[Prev in Thread] Current Thread [Next in Thread]