From b63df21ba5b0bec4ec640b741aca07cb60b37eec Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Fri, 10 Mar 2017 11:52:49 -0700 Subject: [PATCH] Fix declaration of sudo_krb5_verify() in the case where krb5_verify_user() is not present. Bug #777 --- plugins/sudoers/auth/kerb5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/sudoers/auth/kerb5.c b/plugins/sudoers/auth/kerb5.c index ca31f99aa..53e0f7846 100644 --- a/plugins/sudoers/auth/kerb5.c +++ b/plugins/sudoers/auth/kerb5.c @@ -197,7 +197,7 @@ sudo_krb5_verify(struct passwd *pw, char *pass, sudo_auth *auth, struct sudo_con } #else int -sudo_krb5_verify(struct passwd *pw, char *pass, sudo_auth *auth) +sudo_krb5_verify(struct passwd *pw, char *pass, sudo_auth *auth, struct sudo_conv_callback *callback) { krb5_context sudo_context; krb5_principal princ; -- 2.40.0