From: Todd C. Miller Date: Sun, 24 Feb 2013 18:04:58 +0000 (-0500) Subject: Fix debug_decl for sudo_auth_begin_session and sudo_auth_end_session. X-Git-Tag: SUDO_1_8_7~1^2~201 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0eef336edff95f101b449cadd850be32153555cd;p=sudo Fix debug_decl for sudo_auth_begin_session and sudo_auth_end_session. --- diff --git a/plugins/sudoers/auth/sudo_auth.c b/plugins/sudoers/auth/sudo_auth.c index dc98c25d1..8978dfe20 100644 --- a/plugins/sudoers/auth/sudo_auth.c +++ b/plugins/sudoers/auth/sudo_auth.c @@ -290,7 +290,7 @@ sudo_auth_begin_session(struct passwd *pw, char **user_env[]) { sudo_auth *auth; int status = AUTH_SUCCESS; - debug_decl(auth_begin_session, SUDO_DEBUG_AUTH) + debug_decl(sudo_auth_begin_session, SUDO_DEBUG_AUTH) for (auth = auth_switch; auth->name; auth++) { if (auth->begin_session && !IS_DISABLED(auth)) { @@ -327,7 +327,7 @@ sudo_auth_end_session(struct passwd *pw) { sudo_auth *auth; int status = AUTH_SUCCESS; - debug_decl(auth_end_session, SUDO_DEBUG_AUTH) + debug_decl(sudo_auth_end_session, SUDO_DEBUG_AUTH) for (auth = auth_switch; auth->name; auth++) { if (auth->end_session && !IS_DISABLED(auth)) {