From 5d2c01e3d38d5398cd484d94275ab9ef0a654c93 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Tue, 8 Nov 2011 08:22:48 -0500 Subject: [PATCH] fix sudo_debug_printf priority --- src/sudo.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/sudo.c b/src/sudo.c index 01df18a4c..0d343d8eb 100644 --- a/src/sudo.c +++ b/src/sudo.c @@ -502,7 +502,7 @@ command_info_to_details(char * const info[], struct command_details *details) long lval; unsigned long ulval; char *cp, *ep; - debug_decl(command_info_to_details, SUDO_DEBUG_UTIL) + debug_decl(command_info_to_details, SUDO_DEBUG_PCOMM) memset(details, 0, sizeof(*details)); details->closefrom = -1; @@ -513,9 +513,9 @@ command_info_to_details(char * const info[], struct command_details *details) break; \ } - sudo_debug_printf(SUDO_DEBUG_PCOMM, "command info from plugin:"); + sudo_debug_printf(SUDO_DEBUG_INFO, "command info from plugin:"); for (i = 0; info[i] != NULL; i++) { - sudo_debug_printf(SUDO_DEBUG_PCOMM, " %d: %s", i, info[i]); + sudo_debug_printf(SUDO_DEBUG_INFO, " %d: %s", i, info[i]); switch (info[i][0]) { case 'c': SET_STRING("chroot=", chroot) -- 2.50.0