From 0c74bec235664e510e472e2d40a681510a7b65a6 Mon Sep 17 00:00:00 2001 From: Luke Howard Date: Wed, 11 Aug 2021 19:05:19 +1000 Subject: [PATCH] krb5: pass realm to _krb5_make_fast_ap_fxarmor() Fix merge issue introduced in ef1d63a9 which did not update the call site after updating the _krb5_make_fast_ap_fxarmor() prototype to take the realm (used in the anonymous PKINIT case). --- lib/krb5/init_creds_pw.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/krb5/init_creds_pw.c b/lib/krb5/init_creds_pw.c index 27a9b3b99..8c3b7fa6b 100644 --- a/lib/krb5/init_creds_pw.c +++ b/lib/krb5/init_creds_pw.c @@ -2038,6 +2038,7 @@ make_fast_ap_fxarmor(krb5_context context, ret = _krb5_make_fast_ap_fxarmor(context, state->armor_ccache, + realm, &fxarmor->armor_value, &state->armor_key, &state->armor_crypto);