diff --git a/openssh-8.0p1-gssapi-keyex.patch b/openssh-8.0p1-gssapi-keyex.patch index e760f13..2f949b1 100644 --- a/openssh-8.0p1-gssapi-keyex.patch +++ b/openssh-8.0p1-gssapi-keyex.patch @@ -151,7 +151,7 @@ Index: openssh-9.6p1/auth2-gss.c + * The 'gssapi_keyex' userauth mechanism. + */ +static int -+userauth_gsskeyex(struct ssh *ssh) ++userauth_gsskeyex(struct ssh *ssh, const char *method) +{ + Authctxt *authctxt = ssh->authctxt; + int r, authenticated = 0; @@ -213,12 +213,13 @@ Index: openssh-9.6p1/auth2-gss.c else logit("GSSAPI MIC check failed"); -@@ -333,6 +377,12 @@ input_gssapi_mic(int type, u_int32_t ple +@@ -333,6 +377,13 @@ input_gssapi_mic(int type, u_int32_t ple return 0; } +Authmethod method_gsskeyex = { + "gssapi-keyex", ++ "NULL", + userauth_gsskeyex, + &options.gss_authentication +}; diff --git a/openssh.changes b/openssh.changes index 6808adb..fd9b72f 100644 --- a/openssh.changes +++ b/openssh.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Apr 15 13:21:50 UTC 2024 - Marcus Meissner + +- openssh-8.0p1-gssapi-keyex.patch: Added missing struct initializer, + added missing parameter (bsc#1222840) + ------------------------------------------------------------------- Fri Apr 12 10:04:45 UTC 2024 - Antonio Larrosa