Add missing "not" in error message when mixing standalone and

non-standalone authentication methods.
This commit is contained in:
Todd C. Miller
2013-04-11 15:55:32 -04:00
parent 6f718ee3cd
commit bce9a96a6d
2 changed files with 3 additions and 3 deletions

View File

@@ -118,7 +118,7 @@ sudo_auth_init(struct passwd *pw)
if (standalone && auth_switch[1].name != NULL) {
audit_failure(NewArgv, N_("invalid authentication methods"));
log_fatal(0, N_("Invalid authentication methods compiled into sudo! "
"You may mix standalone and non-standalone authentication."));
"You may not mix standalone and non-standalone authentication."));
debug_return_int(-1);
}