2
0
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:
Todd C. Miller
2021-08-19 09:44:11 -06:00
parent b40f74cb24
commit bb5843055e
12 changed files with 27 additions and 27 deletions

View File

@@ -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);