From: Todd C. Miller Date: Fri, 3 Jul 2015 13:06:29 +0000 (-0600) Subject: Fix typo in error message. X-Git-Tag: SUDO_1_8_14^2~30 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=701534c63c962686cf263c03ebfaac72d9c94061;p=sudo Fix typo in error message. --- 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, '/')))