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    [EMAIL PROTECTED]
Graz, Austria   www.hls-software.com



_______________________________________________
Bug-mailutils mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-mailutils

Reply via email to