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

Diff for /src/usr.bin/ssh/packet.c between version 1.212 and 1.213

version 1.212, 2015/05/01 07:10:01 version 1.213, 2015/07/29 04:43:06
Line 1921 
Line 1921 
                         cleanup_exit(255);                          cleanup_exit(255);
                 }                  }
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
           case SSH_ERR_NO_CIPHER_ALG_MATCH:
           case SSH_ERR_NO_MAC_ALG_MATCH:
           case SSH_ERR_NO_COMPRESS_ALG_MATCH:
           case SSH_ERR_NO_KEX_ALG_MATCH:
           case SSH_ERR_NO_HOSTKEY_ALG_MATCH:
                   if (ssh && ssh->kex && ssh->kex->failed_choice) {
                           fatal("Unable to negotiate with %.200s: %s. "
                               "Their offer: %s", ssh_remote_ipaddr(ssh),
                               ssh_err(r), ssh->kex->failed_choice);
                   }
                   /* FALLTHROUGH */
         default:          default:
                 fatal("%s%sConnection to %.200s: %s",                  fatal("%s%sConnection to %.200s: %s",
                     tag != NULL ? tag : "", tag != NULL ? ": " : "",                      tag != NULL ? tag : "", tag != NULL ? ": " : "",

Legend:
Removed from v.1.212  
changed lines
  Added in v.1.213