summaryrefslogtreecommitdiff
path: root/servconf.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2016-09-28 20:32:42 +0000
committerDamien Miller <djm@mindrot.org>2016-09-29 06:54:50 +1000
commit4577adead6a7d600c8e764619d99477a08192c8f (patch)
tree1f825ee75953b95abab5a88ee9f8e241cab9eec1 /servconf.c
parent80d1c963b4dc84ffd11d09617b39c4bffda08956 (diff)
upstream commit
restore pre-auth compression support in the client -- the previous commit was intended to remove it from the server only. remove a few server-side pre-auth compression bits that escaped adjust wording of Compression directive in sshd_config(5) pointed out by naddy@ ok markus@ Upstream-ID: d23696ed72a228dacd4839dd9f2dec424ba2016b
Diffstat (limited to 'servconf.c')
-rw-r--r--servconf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/servconf.c b/servconf.c
index 51feb051f..4bf0b2a35 100644
--- a/servconf.c
+++ b/servconf.c
@@ -1,5 +1,5 @@
1 1
2/* $OpenBSD: servconf.c,v 1.296 2016/09/28 16:33:07 djm Exp $ */ 2/* $OpenBSD: servconf.c,v 1.297 2016/09/28 20:32:42 djm 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
@@ -920,8 +920,8 @@ static const struct multistate multistate_permitrootlogin[] = {
920 { NULL, -1 } 920 { NULL, -1 }
921}; 921};
922static const struct multistate multistate_compression[] = { 922static const struct multistate multistate_compression[] = {
923 { "delayed", COMP_DELAYED },
924 { "yes", COMP_DELAYED }, 923 { "yes", COMP_DELAYED },
924 { "delayed", COMP_DELAYED },
925 { "no", COMP_NONE }, 925 { "no", COMP_NONE },
926 { NULL, -1 } 926 { NULL, -1 }
927}; 927};