From dd61ea057298064c1636fdb0f734f404113d0316 Mon Sep 17 00:00:00 2001 From: Eric Allman Date: Sat, 1 May 1993 16:22:35 -0800 Subject: [PATCH] strerror => errstring SCCS-vsn: usr.sbin/sendmail/src/alias.c 6.35 --- usr/src/usr.sbin/sendmail/src/alias.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/usr/src/usr.sbin/sendmail/src/alias.c b/usr/src/usr.sbin/sendmail/src/alias.c index d755d876a5..8b1af9dbe5 100644 --- a/usr/src/usr.sbin/sendmail/src/alias.c +++ b/usr/src/usr.sbin/sendmail/src/alias.c @@ -25,15 +25,15 @@ ERROR: DBM is no longer supported -- use NDBM instead. #ifndef lint #ifdef NEWDB #ifdef NDBM -static char sccsid[] = "@(#)alias.c 6.34 (Berkeley) %G% (with NEWDB and NDBM)"; +static char sccsid[] = "@(#)alias.c 6.35 (Berkeley) %G% (with NEWDB and NDBM)"; #else -static char sccsid[] = "@(#)alias.c 6.34 (Berkeley) %G% (with NEWDB)"; +static char sccsid[] = "@(#)alias.c 6.35 (Berkeley) %G% (with NEWDB)"; #endif #else #ifdef NDBM -static char sccsid[] = "@(#)alias.c 6.34 (Berkeley) %G% (with NDBM)"; +static char sccsid[] = "@(#)alias.c 6.35 (Berkeley) %G% (with NDBM)"; #else -static char sccsid[] = "@(#)alias.c 6.34 (Berkeley) %G% (without NEWDB or NDBM)"; +static char sccsid[] = "@(#)alias.c 6.35 (Berkeley) %G% (without NEWDB or NDBM)"; #endif #endif #endif /* not lint */ @@ -962,7 +962,7 @@ forward(user, sendq, e) syslog(LOG_NOTICE, "%s: forward %s: transient error: %e", e->e_id, buf); #endif - message("%s: %s: message queued", buf, strerror(err)); + message("%s: %s: message queued", buf, errstring(err)); user->q_flags |= QQUEUEUP|QDONTSEND; return; } -- 2.20.1