2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-31 06:15:37 +00:00

Use "a password is required" instead of "password required" when

the -n flag is used and we need to read a password.
This commit is contained in:
Todd C. Miller
2012-07-11 16:28:40 -04:00
parent 7aaa101736
commit f7dc1d849f
2 changed files with 3 additions and 3 deletions

View File

@@ -374,7 +374,7 @@ log_auth_failure(int status, int tries)
log_error(flags, ngettext("%d incorrect password attempt",
"%d incorrect password attempts", tries), tries);
} else if (ISSET(status, FLAG_NON_INTERACTIVE)) {
log_error(flags, _("password required"));
log_error(flags, _("a password is required"));
}
}