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

Diff for /src/usr.bin/ssh/clientloop.c between version 1.178 and 1.179

version 1.178, 2007/02/20 10:25:14 version 1.179, 2007/03/20 03:56:12
Line 927 
Line 927 
         cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);          cmd = s = read_passphrase("\r\nssh> ", RP_ECHO);
         if (s == NULL)          if (s == NULL)
                 goto out;                  goto out;
         while (*s && isspace(*s))          while (isspace(*s))
                 s++;                  s++;
         if (*s == '-')          if (*s == '-')
                 s++;    /* Skip cmdline '-', if any */                  s++;    /* Skip cmdline '-', if any */
Line 974 
Line 974 
                 goto out;                  goto out;
         }          }
   
         s++;          while (isspace(*++s))
         while (*s && isspace(*s))                  ;
                 s++;  
   
         if (delete) {          if (delete) {
                 cancel_port = 0;                  cancel_port = 0;

Legend:
Removed from v.1.178  
changed lines
  Added in v.1.179