From 701534c63c962686cf263c03ebfaac72d9c94061 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Fri, 3 Jul 2015 07:06:29 -0600 Subject: [PATCH] Fix typo in error message. --- plugins/sudoers/logging.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/sudoers/logging.c b/plugins/sudoers/logging.c index 05f579866..19902ae10 100644 --- a/plugins/sudoers/logging.c +++ b/plugins/sudoers/logging.c @@ -659,7 +659,7 @@ send_mail(const char *fmt, ...) /* Build up an argv based on the mailer path and flags */ if ((mflags = strdup(def_mailerflags)) == NULL) { - mysyslog(LOG_ERR, _("unable allocate memory")); + mysyslog(LOG_ERR, _("unable to allocate memory")); _exit(127); } if ((argv[0] = strrchr(mpath, '/'))) -- 2.40.0