[BACK]Return to list.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ftp

Diff for /src/usr.bin/ftp/list.c between version 1.4 and 1.5

version 1.4, 2010/06/27 20:00:58 version 1.5, 2010/07/03 00:21:14
Line 75 
Line 75 
 parse_list(char **line, char *type)  parse_list(char **line, char *type)
 {  {
         if (**line >= '0' && **line <= '9')          if (**line >= '0' && **line <= '9')
                 return parse_windows(line, type);                  parse_windows(line, type);
           else
         return parse_unix(line, type);                  parse_unix(line, type);
 }  }
   
 #endif /* !SMALL */  #endif /* !SMALL */

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5