[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.60 and 1.61

version 1.60, 2006/04/25 05:45:20 version 1.61, 2006/05/16 16:20:42
Line 100 
Line 100 
   
         ftpport = "ftp";          ftpport = "ftp";
         httpport = "http";          httpport = "http";
   #ifndef SMALL
           httpsport = "https";
   #endif
         gateport = getenv("FTPSERVERPORT");          gateport = getenv("FTPSERVERPORT");
         if (gateport == NULL || *gateport == '\0')          if (gateport == NULL || *gateport == '\0')
                 gateport = "ftpgate";                  gateport = "ftpgate";
Line 730 
Line 733 
             "usage: %s [-46AadEegimnptVv] [-P port] [-r seconds] [host [port]]\n"              "usage: %s [-46AadEegimnptVv] [-P port] [-r seconds] [host [port]]\n"
             "       %s [-o output] ftp://[user:password@]host[:port]/file[/]\n"              "       %s [-o output] ftp://[user:password@]host[:port]/file[/]\n"
             "       %s [-o output] http://host[:port]/file\n"              "       %s [-o output] http://host[:port]/file\n"
   #ifndef SMALL
               "       %s [-o output] https://host[:port]/file\n"
   #endif
             "       %s [-o output] host:[/path/]file[/]\n",              "       %s [-o output] host:[/path/]file[/]\n",
   #ifndef SMALL
               __progname, __progname, __progname, __progname, __progname);
   #else
             __progname, __progname, __progname, __progname);              __progname, __progname, __progname, __progname);
   #endif
         exit(1);          exit(1);
 }  }

Legend:
Removed from v.1.60  
changed lines
  Added in v.1.61