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

Diff for /src/usr.bin/ssh/sshconnect.c between version 1.106 and 1.107

version 1.106, 2001/05/28 23:58:35 version 1.107, 2001/06/07 20:23:05
Line 791 
Line 791 
         char *padded;          char *padded;
   
         if (datafellows & SSH_BUG_PASSWORDPAD) {          if (datafellows & SSH_BUG_PASSWORDPAD) {
                 packet_put_string(password, strlen(password));                  packet_put_cstring(password);
                 return;                  return;
         }          }
         size = roundup(strlen(password) + 1, 32);          size = roundup(strlen(password) + 1, 32);

Legend:
Removed from v.1.106  
changed lines
  Added in v.1.107