From: Todd C. Miller Date: Fri, 22 Jan 2016 18:22:58 +0000 (-0700) Subject: Use SUDOERS_DEBUG_UTIL not SUDO_DEBUG_UTIL in the plugin. X-Git-Tag: SUDO_1_8_16^2~48 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=578be4f39cc73e1d6bda567f64785a58a27dc759;p=sudo Use SUDOERS_DEBUG_UTIL not SUDO_DEBUG_UTIL in the plugin. --- diff --git a/plugins/sudoers/sudoers.c b/plugins/sudoers/sudoers.c index effd22b63..811a2cb9c 100644 --- a/plugins/sudoers/sudoers.c +++ b/plugins/sudoers/sudoers.c @@ -115,7 +115,7 @@ unlimit_nproc(void) { #ifdef __linux__ struct rlimit rl; - debug_decl(unlimit_nproc, SUDO_DEBUG_UTIL) + debug_decl(unlimit_nproc, SUDOERS_DEBUG_UTIL) if (getrlimit(RLIMIT_NPROC, &nproclimit) != 0) sudo_warn("getrlimit"); @@ -136,7 +136,7 @@ static void restore_nproc(void) { #ifdef __linux__ - debug_decl(restore_nproc, SUDO_DEBUG_UTIL) + debug_decl(restore_nproc, SUDOERS_DEBUG_UTIL) if (setrlimit(RLIMIT_NPROC, &nproclimit) != 0) sudo_warn("setrlimit");