[openssh-commits] [openssh] 03/03: upstream: fix argument of "Compression" directive in ssh -G config
git+noreply at mindrot.org
git+noreply at mindrot.org
Thu Nov 28 03:09:23 AEDT 2024
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
commit 8eabd2ae2ca1d7756417a1ee5b41f09c5d997634
Author: djm at openbsd.org <djm at openbsd.org>
AuthorDate: Wed Nov 27 16:07:08 2024 +0000
upstream: fix argument of "Compression" directive in ssh -G config
dump, which used to work but broke in 9.8
OpenBSD-Commit-ID: c79936242d29c70d01941b28d2d07fd0b85fe46f
---
readconf.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/readconf.c b/readconf.c
index 9f559269..777739d6 100644
--- a/readconf.c
+++ b/readconf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: readconf.c,v 1.392 2024/09/26 23:55:08 djm Exp $ */
+/* $OpenBSD: readconf.c,v 1.393 2024/11/27 16:07:08 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo at cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo at cs.hut.fi>, Espoo, Finland
@@ -3410,6 +3410,8 @@ fmt_intarg(OpCodes code, int val)
switch (code) {
case oAddressFamily:
return fmt_multistate_int(val, multistate_addressfamily);
+ case oCompression:
+ return fmt_multistate_int(val, multistate_compression);
case oVerifyHostKeyDNS:
case oUpdateHostkeys:
return fmt_multistate_int(val, multistate_yesnoask);
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list