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

Diff for /src/usr.bin/ftp/main.c between version 1.69 and 1.70

version 1.69, 2008/06/25 21:15:19 version 1.70, 2008/07/08 21:07:57
Line 212 
Line 212 
                         break;                          break;
   
                 case 'd':                  case 'd':
   #ifndef SMALL
                         options |= SO_DEBUG;                          options |= SO_DEBUG;
                         debug++;                          debug++;
   #endif /* !SMALL */
                         break;                          break;
   
                 case 'E':                  case 'E':
Line 764 
Line 766 
 usage(void)  usage(void)
 {  {
         (void)fprintf(stderr,          (void)fprintf(stderr,
             "usage: %s [-46AadEegimnptVv] [-k seconds] "              "usage: %s [-46Aa"
   #ifndef SMALL
               "d"
   #endif /* !SMALL */
               "EegimnptVv] [-k seconds] "
             "[-P port] [-r seconds] [host [port]]\n"              "[-P port] [-r seconds] [host [port]]\n"
             "       %s [-C] [-o output] "              "       %s "
   #ifndef SMALL
               "[-C] "
   #endif /* !SMALL */
               "[-o output] "
             "ftp://[user:password@]host[:port]/file[/]\n"              "ftp://[user:password@]host[:port]/file[/]\n"
             "       %s [-C] [-c cookie] [-o output] "              "       %s "
   #ifndef SMALL
               "[-C] [-c cookie] "
   #endif /* !SMALL */
               "[-o output] "
             "http://host[:port]/file\n"              "http://host[:port]/file\n"
 #ifndef SMALL  #ifndef SMALL
             "       %s [-C] [-c cookie] [-o output] "              "       %s [-C] [-c cookie] [-o output] "
             "https://host[:port]/file\n"              "https://host[:port]/file\n"
 #endif /* !SMALL */  #endif /* !SMALL */
             "       %s [-C] [-o output] host:[/path/]file[/]\n",              "       %s "
   #ifndef SMALL
               "[-C] "
   #endif /* !SMALL */
               "[-o output] host:[/path/]file[/]\n",
 #ifndef SMALL  #ifndef SMALL
             __progname, __progname, __progname, __progname, __progname);              __progname, __progname, __progname, __progname, __progname);
 #else /* !SMALL */  #else /* !SMALL */

Legend:
Removed from v.1.69  
changed lines
  Added in v.1.70