summaryrefslogtreecommitdiff
path: root/servconf.c
diff options
context:
space:
mode:
authorsf@openbsd.org <sf@openbsd.org>2018-07-09 13:37:10 +0000
committerDamien Miller <djm@mindrot.org>2018-07-10 15:13:41 +1000
commit168b46f405d6736960ba7930389eecb9b6710b7e (patch)
treeaab4c134cce64b06caefa41246805d69daab4fe8 /servconf.c
parentab39267fa1243d02b6c330615539fc4b21e17dc4 (diff)
upstream: Revert previous two commits
It turns out we still support pre-auth compression on the client. Therefore revert the previous two commits: date: 2018/07/06 09:06:14; author: sf; commitid: yZVYKIRtUZWD9CmE; Rename COMP_DELAYED to COMP_ZLIB Only delayed compression is supported nowadays. ok markus@ date: 2018/07/06 09:05:01; author: sf; commitid: rEGuT5UgI9f6kddP; 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: cdfef526357e4e1483c86cf599491b2dafb77772
Diffstat (limited to 'servconf.c')
-rw-r--r--servconf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/servconf.c b/servconf.c
index f5272b0f9..97c268e3c 100644
--- a/servconf.c
+++ b/servconf.c
@@ -1,5 +1,5 @@
1 1
2/* $OpenBSD: servconf.c,v 1.336 2018/07/06 09:06:14 sf Exp $ */ 2/* $OpenBSD: servconf.c,v 1.337 2018/07/09 13:37:10 sf Exp $ */
3/* 3/*
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved 5 * All rights reserved
@@ -349,7 +349,7 @@ fill_default_server_options(ServerOptions *options)
349 options->permit_user_env_whitelist = NULL; 349 options->permit_user_env_whitelist = NULL;
350 } 350 }
351 if (options->compression == -1) 351 if (options->compression == -1)
352 options->compression = COMP_ZLIB; 352 options->compression = COMP_DELAYED;
353 if (options->rekey_limit == -1) 353 if (options->rekey_limit == -1)
354 options->rekey_limit = 0; 354 options->rekey_limit = 0;
355 if (options->rekey_interval == -1) 355 if (options->rekey_interval == -1)
@@ -1170,8 +1170,8 @@ static const struct multistate multistate_permitrootlogin[] = {
1170 { NULL, -1 } 1170 { NULL, -1 }
1171}; 1171};
1172static const struct multistate multistate_compression[] = { 1172static const struct multistate multistate_compression[] = {
1173 { "yes", COMP_ZLIB }, 1173 { "yes", COMP_DELAYED },
1174 { "delayed", COMP_ZLIB }, 1174 { "delayed", COMP_DELAYED },
1175 { "no", COMP_NONE }, 1175 { "no", COMP_NONE },
1176 { NULL, -1 } 1176 { NULL, -1 }
1177}; 1177};