]> granicus.if.org Git - sudo/commitdiff
Add missing debug_return
authorTodd C. Miller <Todd.Miller@courtesan.com>
Wed, 22 Aug 2012 14:20:27 +0000 (10:20 -0400)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Wed, 22 Aug 2012 14:20:27 +0000 (10:20 -0400)
plugins/sudoers/logging.c

index 8ad8e5cb61ff86953dde6e4f307a0cfe2bfb1518..11166101f8ecd6ae2d988ea07dac0e96469cd17f 100644 (file)
@@ -337,6 +337,8 @@ log_failure(int status, int flags)
        else if (flags == NOT_FOUND_DOT)
            warningx(_("ignoring `%s' found in '.'\nUse `sudo ./%s' if this is the `%s' you wish to run."), user_cmnd, user_cmnd, user_cmnd);
     }
+
+    debug_return;
 }
 
 /*
@@ -378,6 +380,8 @@ log_auth_failure(int status, int tries)
     } else if (ISSET(status, FLAG_NON_INTERACTIVE)) {
        log_error(flags, _("a password is required"));
     }
+
+    debug_return;
 }
 
 /*