diff options
Diffstat (limited to 'kex.c')
-rw-r--r-- | kex.c | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: kex.c,v 1.134 2017/06/13 12:13:59 djm Exp $ */ | 1 | /* $OpenBSD: kex.c,v 1.135 2018/01/23 05:27:21 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. | 3 | * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. |
4 | * | 4 | * |
@@ -675,9 +675,6 @@ choose_mac(struct ssh *ssh, struct sshmac *mac, char *client, char *server) | |||
675 | free(name); | 675 | free(name); |
676 | return SSH_ERR_INTERNAL_ERROR; | 676 | return SSH_ERR_INTERNAL_ERROR; |
677 | } | 677 | } |
678 | /* truncate the key */ | ||
679 | if (ssh->compat & SSH_BUG_HMAC) | ||
680 | mac->key_len = 16; | ||
681 | mac->name = name; | 678 | mac->name = name; |
682 | mac->key = NULL; | 679 | mac->key = NULL; |
683 | mac->enabled = 0; | 680 | mac->enabled = 0; |
@@ -866,8 +863,7 @@ kex_choose_conf(struct ssh *ssh) | |||
866 | kex->dh_need = dh_need; | 863 | kex->dh_need = dh_need; |
867 | 864 | ||
868 | /* ignore the next message if the proposals do not match */ | 865 | /* ignore the next message if the proposals do not match */ |
869 | if (first_kex_follows && !proposals_match(my, peer) && | 866 | if (first_kex_follows && !proposals_match(my, peer)) |
870 | !(ssh->compat & SSH_BUG_FIRSTKEX)) | ||
871 | ssh->dispatch_skip_packets = 1; | 867 | ssh->dispatch_skip_packets = 1; |
872 | r = 0; | 868 | r = 0; |
873 | out: | 869 | out: |