upstream: Move always unsupported keywords to be grouped with the other
ones. Move oSecurityProvider to match the order in the OpCodes enum. Patch from openbsd@academicsolutions.ch, ok djm@ OpenBSD-Commit-ID: 061e4505861ec1e02ba3a63e3d1b3be3cad458ec
This commit is contained in:
parent
8784b02dc4
commit
68010acbcf
10
readconf.c
10
readconf.c
|
@ -1,4 +1,4 @@
|
||||||
/* $OpenBSD: readconf.c,v 1.317 2019/12/20 02:29:21 dtucker Exp $ */
|
/* $OpenBSD: readconf.c,v 1.318 2019/12/20 02:42:42 dtucker Exp $ */
|
||||||
/*
|
/*
|
||||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||||
|
@ -197,6 +197,9 @@ static struct {
|
||||||
{ "afstokenpassing", oUnsupported },
|
{ "afstokenpassing", oUnsupported },
|
||||||
{ "kerberosauthentication", oUnsupported },
|
{ "kerberosauthentication", oUnsupported },
|
||||||
{ "kerberostgtpassing", oUnsupported },
|
{ "kerberostgtpassing", oUnsupported },
|
||||||
|
{ "rsaauthentication", oUnsupported },
|
||||||
|
{ "rhostsrsaauthentication", oUnsupported },
|
||||||
|
{ "compressionlevel", oUnsupported },
|
||||||
|
|
||||||
/* Sometimes-unsupported options */
|
/* Sometimes-unsupported options */
|
||||||
#if defined(GSSAPI)
|
#if defined(GSSAPI)
|
||||||
|
@ -213,10 +216,6 @@ static struct {
|
||||||
{ "smartcarddevice", oUnsupported },
|
{ "smartcarddevice", oUnsupported },
|
||||||
{ "pkcs11provider", oUnsupported },
|
{ "pkcs11provider", oUnsupported },
|
||||||
#endif
|
#endif
|
||||||
{ "securitykeyprovider", oSecurityKeyProvider },
|
|
||||||
{ "rsaauthentication", oUnsupported },
|
|
||||||
{ "rhostsrsaauthentication", oUnsupported },
|
|
||||||
{ "compressionlevel", oUnsupported },
|
|
||||||
|
|
||||||
{ "forwardagent", oForwardAgent },
|
{ "forwardagent", oForwardAgent },
|
||||||
{ "forwardx11", oForwardX11 },
|
{ "forwardx11", oForwardX11 },
|
||||||
|
@ -310,6 +309,7 @@ static struct {
|
||||||
{ "pubkeyacceptedkeytypes", oPubkeyAcceptedKeyTypes },
|
{ "pubkeyacceptedkeytypes", oPubkeyAcceptedKeyTypes },
|
||||||
{ "ignoreunknown", oIgnoreUnknown },
|
{ "ignoreunknown", oIgnoreUnknown },
|
||||||
{ "proxyjump", oProxyJump },
|
{ "proxyjump", oProxyJump },
|
||||||
|
{ "securitykeyprovider", oSecurityKeyProvider },
|
||||||
|
|
||||||
{ NULL, oBadOption }
|
{ NULL, oBadOption }
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue