From daa960dcf9a0f245c54435d4768d94183bc94e94 Mon Sep 17 00:00:00 2001 From: bitianyuan Date: Tue, 14 Jan 2025 07:59:28 +0000 Subject: [PATCH] fix the missing member of the struct Authmethod method_gsskeyex Signed-off-by: bitianyuan --- openssh-8.0p1-gssapi-keyex.patch | 3 ++- openssh.spec | 8 +++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/openssh-8.0p1-gssapi-keyex.patch b/openssh-8.0p1-gssapi-keyex.patch index f3e3f52..0a6d9ff 100644 --- a/openssh-8.0p1-gssapi-keyex.patch +++ b/openssh-8.0p1-gssapi-keyex.patch @@ -221,12 +221,13 @@ index 9351e042..d6446c0c 100644 else logit("GSSAPI MIC check failed"); -@@ -326,6 +370,12 @@ input_gssapi_mic(int type, u_int32_t plen, struct ssh *ssh) +@@ -326,6 +370,13 @@ input_gssapi_mic(int type, u_int32_t plen, struct ssh *ssh) return 0; } +Authmethod method_gsskeyex = { + "gssapi-keyex", ++ NULL, + userauth_gsskeyex, + &options.gss_authentication +}; diff --git a/openssh.spec b/openssh.spec index f8d9b05..a80e176 100644 --- a/openssh.spec +++ b/openssh.spec @@ -6,7 +6,7 @@ %{?no_gtk2:%global gtk2 0} %global sshd_uid 74 -%global openssh_release 6 +%global openssh_release 7 Name: openssh Version: 9.3p2 @@ -493,6 +493,12 @@ getent passwd sshd >/dev/null || \ %attr(0644,root,root) %{_mandir}/man8/sftp-server.8* %changelog +* Tue Jan 14 2025 bitianyuan - 9.3p2-7 +- Type:bugfix +- ID:NA +- SUG:NA +- DESC:fix the missing member of the struct Authmethod method_gsskeyex + * Tue Oct 29 2024 bitianyuan - 9.3p2-6 - Type:bugfix - ID:NA -- Gitee