From 44570762a94933296f9a366fcffd7383890c045a Mon Sep 17 00:00:00 2001 From: cgd Date: Thu, 21 Apr 1994 18:53:47 +0000 Subject: [PATCH] header file foo --- usr.sbin/lpr/lpd/recvjob.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/lpr/lpd/recvjob.c b/usr.sbin/lpr/lpd/recvjob.c index 229c2d6c35f4..d9882642b470 100644 --- a/usr.sbin/lpr/lpd/recvjob.c +++ b/usr.sbin/lpr/lpd/recvjob.c @@ -33,7 +33,7 @@ #ifndef lint /*static char sccsid[] = "from: @(#)recvjob.c 5.15 (Berkeley) 5/4/91";*/ -static char rcsid[] = "$Id: recvjob.c,v 1.2 1993/08/01 17:58:49 mycroft Exp $"; +static char rcsid[] = "$Id: recvjob.c,v 1.3 1994/04/21 18:53:47 cgd Exp $"; #endif /* not lint */ /* @@ -252,7 +252,7 @@ chksize(size) syslog(LOG_ERR, "%s: %m", "statfs(\".\")"); return (1); } - spacefree = sfb.f_bavail * (sfb.f_fsize / 512); + spacefree = sfb.f_bavail * (sfb.f_bsize / 512); size = (size + 511) / 512; if (minfree + size > spacefree) return(0);