summaryrefslogtreecommitdiff
path: root/security/openssh-portable/files/extra-patch-gssapi-sshconnect2.c
diff options
context:
space:
mode:
authorBryan Drewery <bdrewery@FreeBSD.org>2022-03-03 10:27:34 -0800
committerBryan Drewery <bdrewery@FreeBSD.org>2022-03-03 11:25:36 -0800
commitae66cffc19f357cbd51d5841c9b110a9ffd63e32 (patch)
treecded17535bdb581e86bfec6d6ce5c6093cbb6a17 /security/openssh-portable/files/extra-patch-gssapi-sshconnect2.c
parentsecurity/openssh-portable: Fix subtle rc script problem. (diff)
security/openssh-portable: Update to 8.9p1
- Unbreak GSSAPI [1] - rc.d/openssh: Allow modifying host key generation [2] Changes: https://www.openssh.com/txt/release-8.9 PR: 259909 [1] PR: 202169 [2] Submitted by: Rick Miller [1] Submitted by: Chad Jacob Milios [2]
Diffstat (limited to 'security/openssh-portable/files/extra-patch-gssapi-sshconnect2.c')
-rw-r--r--security/openssh-portable/files/extra-patch-gssapi-sshconnect2.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/security/openssh-portable/files/extra-patch-gssapi-sshconnect2.c b/security/openssh-portable/files/extra-patch-gssapi-sshconnect2.c
deleted file mode 100644
index 7cb08ee12a5e..000000000000
--- a/security/openssh-portable/files/extra-patch-gssapi-sshconnect2.c
+++ /dev/null
@@ -1,12 +0,0 @@
-Avoid free(const char*)
---- sshconnect2.c.orig 2020-11-19 14:56:54.387846000 -0800
-+++ sshconnect2.c 2020-11-19 14:57:04.445045000 -0800
-@@ -846,7 +846,7 @@ userauth_gssapi(struct ssh *ssh)
- /* Fall back to specified host if we are using proxy command
- * and can not use DNS on that socket */
- if (strcmp(gss_host, "UNKNOWN") == 0) {
-- gss_host = authctxt->host;
-+ gss_host = xstrdup(authctxt->host);
- }
- } else {
- gss_host = xstrdup(authctxt->host);