[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.243 and 1.244

version 1.243, 2013/12/30 23:52:27 version 1.244, 2014/01/09 23:26:48
Line 652 
Line 652 
                 fatal("Protocol major versions differ: %d vs. %d",                  fatal("Protocol major versions differ: %d vs. %d",
                     (options.protocol & SSH_PROTO_2) ? PROTOCOL_MAJOR_2 : PROTOCOL_MAJOR_1,                      (options.protocol & SSH_PROTO_2) ? PROTOCOL_MAJOR_2 : PROTOCOL_MAJOR_1,
                     remote_major);                      remote_major);
           if ((datafellows & SSH_BUG_DERIVEKEY) != 0)
                   fatal("Server version \"%.100s\" uses unsafe key agreement; "
                       "refusing connection", remote_version);
         if ((datafellows & SSH_BUG_RSASIGMD5) != 0)          if ((datafellows & SSH_BUG_RSASIGMD5) != 0)
                 logit("Server version \"%.100s\" uses unsafe RSA signature "                  logit("Server version \"%.100s\" uses unsafe RSA signature "
                     "scheme; disabling use of RSA keys", remote_version);                      "scheme; disabling use of RSA keys", remote_version);

Legend:
Removed from v.1.243  
changed lines
  Added in v.1.244