diff --git a/contrib/pam-krb5/module/internal.h b/contrib/pam-krb5/module/internal.h index f3d832a1724..f3ea3013981 100644 --- a/contrib/pam-krb5/module/internal.h +++ b/contrib/pam-krb5/module/internal.h @@ -109,6 +109,7 @@ struct pam_config { /* The authentication context, which bundles together Kerberos data. */ struct context *ctx; + bool no_warn; /* XXX Dummy argument, remove when Heimdal is removed. */ }; /* Default to a hidden visibility for all internal functions. */ diff --git a/contrib/pam-krb5/module/options.c b/contrib/pam-krb5/module/options.c index f2c3791d895..799b3a33e16 100644 --- a/contrib/pam-krb5/module/options.c +++ b/contrib/pam-krb5/module/options.c @@ -52,6 +52,7 @@ static const struct option options[] = { { K(no_ccache), false, BOOL (false) }, { K(no_prompt), true, BOOL (false) }, { K(no_update_user), true, BOOL (false) }, + { K(no_warn), true, BOOL (false) }, { K(only_alt_auth), true, BOOL (false) }, { K(pkinit_anchors), true, STRING (NULL) }, { K(pkinit_prompt), true, BOOL (false) },