diff options
author | Peter Wemm <peter@FreeBSD.org> | 1997-11-10 01:58:17 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 1997-11-10 01:58:17 +0000 |
commit | ff37c899d76b8a843614fb348674c7e94e4f53ce (patch) | |
tree | ec1e00a87146aa91a3fe520fcbd0e82387524022 /usr.sbin/sendmail/src/err.c | |
parent | e54babdf0c067b521dc066286e05db2ab1add3df (diff) |
Notes
Diffstat (limited to 'usr.sbin/sendmail/src/err.c')
-rw-r--r-- | usr.sbin/sendmail/src/err.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.sbin/sendmail/src/err.c b/usr.sbin/sendmail/src/err.c index f4f95e6cd0f2..f08d9609d8eb 100644 --- a/usr.sbin/sendmail/src/err.c +++ b/usr.sbin/sendmail/src/err.c @@ -33,7 +33,7 @@ */ #ifndef lint -static char sccsid[] = "@(#)err.c 8.64 (Berkeley) 7/25/97"; +static char sccsid[] = "@(#)err.c 8.65 (Berkeley) 10/18/97"; #endif /* not lint */ # include "sendmail.h" @@ -556,7 +556,9 @@ fmtmsg(eb, to, num, eno, fmt, ap) } /* output the "to" person */ - if (to != NULL && to[0] != '\0') + if (to != NULL && to[0] != '\0' && + strncmp(num, "551", 3) != 0 && + strncmp(num, "251", 3) != 0) { (void) snprintf(eb, spaceleft, "%s... ", shortenstring(to, 203)); |