From: Eric Allman Date: Tue, 24 Aug 1993 00:34:01 +0000 (-0800) Subject: fix bug in enoughspace X-Git-Tag: BSD-4_4_Lite1-Snapshot-Development~1881 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/2e47c4c8b1326142d03d01d8abda7dd9d76fde13?ds=sidebyside fix bug in enoughspace SCCS-vsn: usr.sbin/sendmail/src/conf.c 8.28 --- 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; } /*