raven-rhel6/openssh/openssh-8.7p1-minrsabits.patch

25 lines
951 B
Diff
Raw Normal View History

2024-02-21 20:14:44 +06:00
diff --git a/readconf.c b/readconf.c
index 7f26c680..42be690b 100644
--- a/readconf.c
+++ b/readconf.c
2024-02-28 17:40:12 +06:00
@@ -320,6 +320,7 @@ static struct {
2024-02-21 20:14:44 +06:00
{ "securitykeyprovider", oSecurityKeyProvider },
{ "knownhostscommand", oKnownHostsCommand },
2024-02-28 17:40:12 +06:00
{ "requiredrsasize", oRequiredRSASize },
2024-02-21 20:14:44 +06:00
+ { "rsaminsize", oRequiredRSASize }, /* alias */
2024-02-28 17:40:12 +06:00
{ "enableescapecommandline", oEnableEscapeCommandline },
2024-02-21 20:14:44 +06:00
{ NULL, oBadOption }
diff --git a/servconf.c b/servconf.c
index 29df0463..423772b1 100644
--- a/servconf.c
+++ b/servconf.c
2024-02-28 17:40:12 +06:00
@@ -676,6 +680,7 @@ static struct {
2024-02-21 20:14:44 +06:00
{ "casignaturealgorithms", sCASignatureAlgorithms, SSHCFG_ALL },
{ "securitykeyprovider", sSecurityKeyProvider, SSHCFG_GLOBAL },
2024-02-28 17:40:12 +06:00
{ "requiredrsasize", sRequiredRSASize, SSHCFG_ALL },
2024-02-21 20:14:44 +06:00
+ { "rsaminsize", sRequiredRSASize, SSHCFG_ALL }, /* alias */
2024-02-28 17:40:12 +06:00
{ "channeltimeout", sChannelTimeout, SSHCFG_ALL },
{ "unusedconnectiontimeout", sUnusedConnectionTimeout, SSHCFG_ALL },
2024-02-21 20:14:44 +06:00
{ NULL, sBadOption, 0 }