summaryrefslogtreecommitdiff
path: root/kex.c
diff options
context:
space:
mode:
Diffstat (limited to 'kex.c')
-rw-r--r--kex.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/kex.c b/kex.c
index 811e2cf6c..c122361f2 100644
--- a/kex.c
+++ b/kex.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: kex.c,v 1.124 2016/09/22 17:52:53 djm Exp $ */ 1/* $OpenBSD: kex.c,v 1.125 2016/09/28 20:32:42 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 *
@@ -684,8 +684,6 @@ choose_comp(struct sshcomp *comp, char *client, char *server)
684 return SSH_ERR_NO_COMPRESS_ALG_MATCH; 684 return SSH_ERR_NO_COMPRESS_ALG_MATCH;
685 if (strcmp(name, "zlib@openssh.com") == 0) { 685 if (strcmp(name, "zlib@openssh.com") == 0) {
686 comp->type = COMP_DELAYED; 686 comp->type = COMP_DELAYED;
687 } else if (strcmp(name, "zlib") == 0) {
688 comp->type = COMP_ZLIB;
689 } else if (strcmp(name, "none") == 0) { 687 } else if (strcmp(name, "none") == 0) {
690 comp->type = COMP_NONE; 688 comp->type = COMP_NONE;
691 } else { 689 } else {