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

Diff for /src/usr.bin/ssh/Attic/sshconnect1.c between version 1.60 and 1.60.2.1

version 1.60, 2004/07/28 09:40:29 version 1.60.2.1, 2005/09/02 03:45:01
Line 162 
Line 162 
         /* Compute the response. */          /* Compute the response. */
         /* The response is MD5 of decrypted challenge plus session id. */          /* The response is MD5 of decrypted challenge plus session id. */
         len = BN_num_bytes(challenge);          len = BN_num_bytes(challenge);
         if (len <= 0 || len > sizeof(buf))          if (len <= 0 || (u_int)len > sizeof(buf))
                 packet_disconnect(                  packet_disconnect(
                     "respond_to_rsa_challenge: bad challenge length %d", len);                      "respond_to_rsa_challenge: bad challenge length %d", len);
   

Legend:
Removed from v.1.60  
changed lines
  Added in v.1.60.2.1