mirror of
https://github.com/sudo-project/sudo.git
synced 2025-08-31 14:25:15 +00:00
Fix debugging printout output for env_should_keep()
This commit is contained in:
@@ -677,7 +677,7 @@ env_should_keep(const char *var)
|
||||
}
|
||||
}
|
||||
sudo_debug_printf(SUDO_DEBUG_INFO, "keep %s: %s",
|
||||
var, keepit ? "YES" : "NO");
|
||||
var, keepit == true ? "YES" : "NO");
|
||||
debug_return_bool(keepit == true);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user