diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-03-08 23:19:33 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-03-08 23:19:33 +0000 |
commit | becc9039f06dd4d76e89342ee124cd1046aa32ac (patch) | |
tree | 3429ebc400d3d7489b7b828c62325a49523a4b82 /usr.sbin | |
parent | e4d6c2b07d73ae08da157db2edb9142ad02ab1b0 (diff) |
Bleah, someone beat me to this but I have some minor chages
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/mailwrapper/mailwrapper.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/mailwrapper/mailwrapper.c b/usr.sbin/mailwrapper/mailwrapper.c index 94e1ca9aa03..1de63695ad3 100644 --- a/usr.sbin/mailwrapper/mailwrapper.c +++ b/usr.sbin/mailwrapper/mailwrapper.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mailwrapper.c,v 1.13 2003/03/08 21:29:45 deraadt Exp $ */ +/* $OpenBSD: mailwrapper.c,v 1.14 2003/03/08 23:19:32 millert Exp $ */ /* $NetBSD: mailwrapper.c,v 1.2 1999/02/20 22:10:07 thorpej Exp $ */ /* @@ -108,7 +108,7 @@ main(int argc, char *argv[], char *envp[]) _PATH_MAILERCONF, _PATH_DEFAULTMTA); closelog(); execve(_PATH_DEFAULTMTA, al.argv, envp); - err(1, "executing %s", _PATH_DEFAULTMTA); + err(1, "cannot exec %s", _PATH_DEFAULTMTA); /*NOTREACHED*/ } @@ -153,7 +153,7 @@ main(int argc, char *argv[], char *envp[]) addarg(&al, NULL, 0); execve(to, al.argv, envp); - err(1, "executing %s", to); + err(1, "cannot exec %s", to); /*NOTREACHED*/ parse_error: errx(1, "parse error in %s at line %lu", |