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

Diff for /src/usr.bin/ssh/sftp.c between version 1.5 and 1.6

version 1.5, 2001/02/06 23:53:54 version 1.6, 2001/02/07 22:27:18
Line 91 
Line 91 
   
         /* Init args array */          /* Init args array */
         if (args == NULL) {          if (args == NULL) {
                 nargs = 4;                  nargs = 6;
                 i = 0;                  i = 0;
                 args = xmalloc(sizeof(*args) * nargs);                  args = xmalloc(sizeof(*args) * nargs);
                 args[i++] = "ssh";                  args[i++] = "ssh";
                 args[i++] = "-oProtocol=2";                  args[i++] = "-oProtocol=2";
                   args[i++] = "-oForwardAgent=no";
                   args[i++] = "-oForwardX11=no";
                 args[i++] = "-s";                  args[i++] = "-s";
                 args[i++] = NULL;                  args[i++] = NULL;
         }          }

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