summaryrefslogtreecommitdiff
path: root/packet.c
diff options
context:
space:
mode:
authorsf@openbsd.org <sf@openbsd.org>2018-07-06 09:05:01 +0000
committerDamien Miller <djm@mindrot.org>2018-07-10 15:13:40 +1000
commit95db395d2e56a6f868193aead6cadb2493f036c6 (patch)
tree23c5d15ca0cb14e4e3e313f75e0f2edb6f1616a8 /packet.c
parentf28a4d5cd24c4aa177e96b4f96957991e552cb70 (diff)
upstream: Remove leftovers from pre-authentication compression
Support for this has been removed in 2016. COMP_DELAYED will be renamed in a later commit. ok markus@ OpenBSD-Commit-ID: 6a99616c832627157113fcb0cf5a752daf2e6b58
Diffstat (limited to 'packet.c')
-rw-r--r--packet.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/packet.c b/packet.c
index 4da9f52b6..a39a340f3 100644
--- a/packet.c
+++ b/packet.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: packet.c,v 1.272 2018/07/06 09:03:02 sf Exp $ */ 1/* $OpenBSD: packet.c,v 1.273 2018/07/06 09:05:01 sf Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -879,9 +879,8 @@ ssh_set_newkeys(struct ssh *ssh, int mode)
879 /* explicit_bzero(enc->iv, enc->block_size); 879 /* explicit_bzero(enc->iv, enc->block_size);
880 explicit_bzero(enc->key, enc->key_len); 880 explicit_bzero(enc->key, enc->key_len);
881 explicit_bzero(mac->key, mac->key_len); */ 881 explicit_bzero(mac->key, mac->key_len); */
882 if ((comp->type == COMP_ZLIB || 882 if (comp->type == COMP_DELAYED && state->after_authentication
883 (comp->type == COMP_DELAYED && 883 && comp->enabled == 0) {
884 state->after_authentication)) && comp->enabled == 0) {
885 if ((r = ssh_packet_init_compression(ssh)) < 0) 884 if ((r = ssh_packet_init_compression(ssh)) < 0)
886 return r; 885 return r;
887 if (mode == MODE_OUT) { 886 if (mode == MODE_OUT) {