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

Diff for /src/usr.bin/ftp/ftp_var.h between version 1.28 and 1.29

version 1.28, 2009/04/27 22:51:51 version 1.29, 2009/05/05 19:35:30
Line 79 
Line 79 
   
 #include "stringlist.h"  #include "stringlist.h"
 #include "extern.h"  #include "extern.h"
   #include "small.h"
   
 #define HASHBYTES       1024  #define HASHBYTES       1024
 #define FTPBUFLEN       MAXPATHLEN + 200  #define FTPBUFLEN       MAXPATHLEN + 200
Line 187 
Line 188 
 char    *stringbase;            /* current scan point in line buffer */  char    *stringbase;            /* current scan point in line buffer */
 char    argbuf[FTPBUFLEN];      /* argument storage buffer */  char    argbuf[FTPBUFLEN];      /* argument storage buffer */
 char    *argbase;               /* current storage point in arg buffer */  char    *argbase;               /* current storage point in arg buffer */
   #ifndef SMALL
 StringList *marg_sl;            /* stringlist containing margv */  StringList *marg_sl;            /* stringlist containing margv */
   #endif /* !SMALL */
 int     margc;                  /* count of arguments on input line */  int     margc;                  /* count of arguments on input line */
 #define margv (marg_sl->sl_str) /* args parsed from input line */  #define margv (marg_sl->sl_str) /* args parsed from input line */
 int     cpend;                  /* flag: if != 0, then pending server reply */  int     cpend;                  /* flag: if != 0, then pending server reply */

Legend:
Removed from v.1.28  
changed lines
  Added in v.1.29