]> granicus.if.org Git - sudo/commitdiff
Fix debug_decl for sudo_auth_begin_session and sudo_auth_end_session.
authorTodd C. Miller <Todd.Miller@courtesan.com>
Sun, 24 Feb 2013 18:04:58 +0000 (13:04 -0500)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Sun, 24 Feb 2013 18:04:58 +0000 (13:04 -0500)
plugins/sudoers/auth/sudo_auth.c

index dc98c25d18518f782c75fb33841c47889693ecc2..8978dfe2010181679048229b9e83c864f1afc241 100644 (file)
@@ -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)) {