mirror of
https://github.com/sudo-project/sudo.git
synced 2025-09-04 00:05:11 +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",
|
sudo_debug_printf(SUDO_DEBUG_INFO, "keep %s: %s",
|
||||||
var, keepit ? "YES" : "NO");
|
var, keepit == true ? "YES" : "NO");
|
||||||
debug_return_bool(keepit == true);
|
debug_return_bool(keepit == true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user