From: djm@openbsd.org Date: Wed, 27 Nov 2024 16:07:08 +0000 (+0000) Subject: upstream: fix argument of "Compression" directive in ssh -G config X-Git-Tag: V_10_0_P1~134 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8eabd2ae2ca1d7756417a1ee5b41f09c5d997634;p=thirdparty%2Fopenssh-portable.git upstream: fix argument of "Compression" directive in ssh -G config dump, which used to work but broke in 9.8 OpenBSD-Commit-ID: c79936242d29c70d01941b28d2d07fd0b85fe46f --- diff --git a/readconf.c b/readconf.c index 9f5592698..777739d6a 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 * Copyright (c) 1995 Tatu Ylonen , 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);