[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.31 and 1.32

version 1.31, 1999/11/15 23:58:54 version 1.32, 1999/11/16 20:44:42
Line 1075 
Line 1075 
   
   rbits = BN_num_bits(public_key->n);    rbits = BN_num_bits(public_key->n);
   if (bits != rbits) {    if (bits != rbits) {
     log("Warning: Server lies about size of server public key,");      log("Warning: Server lies about size of server public key: "
     log("Warning: this may be due to an old implementation of ssh.");          "actual size is %d bits vs. announced %d.", rbits, bits);
     log("Warning: (actual size %d bits, announced size %d bits)", rbits, bits);      log("Warning: This may be due to an old implementation of ssh.");
   }    }
   
   /* Get the host key. */    /* Get the host key. */
Line 1092 
Line 1092 
   
   rbits = BN_num_bits(host_key->n);    rbits = BN_num_bits(host_key->n);
   if (bits != rbits) {    if (bits != rbits) {
     log("Warning: Server lies about size of server host key,");      log("Warning: Server lies about size of server host key: "
     log("Warning: this may be due to an old implementation of ssh.");          "actual size is %d bits vs. announced %d.", rbits, bits);
     log("Warning: (actual size %d bits, announced size %d bits)", rbits, bits);      log("Warning: This may be due to an old implementation of ssh.");
   }    }
   
   /* Store the host key from the known host file in here    /* Store the host key from the known host file in here

Legend:
Removed from v.1.31  
changed lines
  Added in v.1.32