mirror of
https://github.com/sudo-project/sudo.git
synced 2025-08-31 14:25:15 +00:00
Replace messages like "unknown foo: %s" with "unknown foo %s".
The colon really doesn't belong there; we generally use a colon to separate a message from the warning detail.
This commit is contained in:
@@ -853,7 +853,7 @@ sudoers_log_open(int type, const char *log_file)
|
||||
if (!warned) {
|
||||
warned = true;
|
||||
log_warning(SLOG_SEND_MAIL|SLOG_NO_LOG,
|
||||
N_("unable to open log file: %s"), log_file);
|
||||
N_("unable to open log file %s"), log_file);
|
||||
}
|
||||
if (fd != -1)
|
||||
close(fd);
|
||||
|
Reference in New Issue
Block a user