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

Diff for /src/usr.bin/ssh/authfile.c between version 1.47 and 1.48

version 1.47, 2002/02/24 19:14:59 version 1.48, 2002/02/28 15:46:33
Line 169 
Line 169 
         int success = 0;          int success = 0;
         int len = strlen(_passphrase);          int len = strlen(_passphrase);
         u_char *passphrase = (len > 0) ? (u_char *)_passphrase : NULL;          u_char *passphrase = (len > 0) ? (u_char *)_passphrase : NULL;
         EVP_CIPHER *cipher = (len > 0) ? EVP_des_ede3_cbc() : NULL;          const EVP_CIPHER *cipher = (len > 0) ? EVP_des_ede3_cbc() : NULL;
   
         if (len > 0 && len <= 4) {          if (len > 0 && len <= 4) {
                 error("passphrase too short: have %d bytes, need > 4", len);                  error("passphrase too short: have %d bytes, need > 4", len);

Legend:
Removed from v.1.47  
changed lines
  Added in v.1.48