From 77e7d2fd0b1f0045bd9368e500a783532bb0d066 Mon Sep 17 00:00:00 2001 From: Eric Allman Date: Fri, 24 Dec 1993 13:25:46 -0800 Subject: [PATCH] no need to checkfd012() in dropenvelope -- that's a legit failure mode SCCS-vsn: usr.sbin/sendmail/src/envelope.c 8.26 --- usr/src/usr.sbin/sendmail/src/envelope.c | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/usr/src/usr.sbin/sendmail/src/envelope.c b/usr/src/usr.sbin/sendmail/src/envelope.c index 307e698631..cee543bd21 100644 --- a/usr/src/usr.sbin/sendmail/src/envelope.c +++ b/usr/src/usr.sbin/sendmail/src/envelope.c @@ -7,7 +7,7 @@ */ #ifndef lint -static char sccsid[] = "@(#)envelope.c 8.25 (Berkeley) %G%"; +static char sccsid[] = "@(#)envelope.c 8.26 (Berkeley) %G%"; #endif /* not lint */ #include "sendmail.h" @@ -92,10 +92,6 @@ dropenvelope(e) } } -#ifdef XDEBUG - checkfd012("dropenvelope 1"); -#endif - /* we must have an id to remove disk files */ if (id == NULL) return; @@ -205,10 +201,6 @@ dropenvelope(e) if (saveit && e->e_errormode != EM_QUIET) savemail(e); -#ifdef XDEBUG - checkfd012("dropenvelope 2"); -#endif - /* ** Arrange to send warning messages to postmaster as requested. */ @@ -249,10 +241,6 @@ dropenvelope(e) #endif /* QUEUE */ } -#ifdef XDEBUG - checkfd012("dropenvelope 3"); -#endif - /* now unlock the job */ closexscript(e); unlockqueue(e); @@ -262,9 +250,6 @@ dropenvelope(e) (void) xfclose(e->e_dfp, "dropenvelope", e->e_df); e->e_dfp = NULL; e->e_id = e->e_df = NULL; -#ifdef XDEBUG - checkfd012("dropenvelope 4"); -#endif } /* ** CLEARENVELOPE -- clear an envelope without unlocking -- 2.20.1