From 2e47c4c8b1326142d03d01d8abda7dd9d76fde13 Mon Sep 17 00:00:00 2001 From: Eric Allman Date: Mon, 23 Aug 1993 16:34:01 -0800 Subject: [PATCH] fix bug in enoughspace SCCS-vsn: usr.sbin/sendmail/src/conf.c 8.28 --- usr/src/usr.sbin/sendmail/src/conf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/src/usr.sbin/sendmail/src/conf.c b/usr/src/usr.sbin/sendmail/src/conf.c index 3e93a904eb..be767b8eec 100644 --- a/usr/src/usr.sbin/sendmail/src/conf.c +++ b/usr/src/usr.sbin/sendmail/src/conf.c @@ -7,7 +7,7 @@ */ #ifndef lint -static char sccsid[] = "@(#)conf.c 8.27 (Berkeley) %G%"; +static char sccsid[] = "@(#)conf.c 8.28 (Berkeley) %G%"; #endif /* not lint */ # include "sendmail.h" @@ -1329,6 +1329,7 @@ freespace(dir, bsize) *bsize = FSBLOCKSIZE; return (fs.f_bavail); } +#endif return (-1); } /* @@ -1385,7 +1386,6 @@ enoughspace(msize) else if (tTd(4, 80)) printf("enoughspace failure: min=%ld, need=%ld: %s\n", MinBlocksFree, msize, errstring(errno)); -#endif return TRUE; } /* -- 2.20.1