Fix typo in error message.

This commit is contained in:
Todd C. Miller
2015-07-03 07:06:29 -06:00
parent 7583e8d760
commit 701534c63c

View File

@@ -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, '/')))