From: Eric Allman Date: Sun, 2 May 1993 00:22:35 +0000 (-0800) Subject: strerror => errstring X-Git-Tag: BSD-4_4-Snapshot-Development~1776 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/dd61ea057298064c1636fdb0f734f404113d0316?hp=6c67546817eb06f3bd6d057567757ee7c6e352fc strerror => errstring SCCS-vsn: usr.sbin/sendmail/src/alias.c 6.35 --- 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; }