From c1ef9f83c919949e90841ae0990aa9a0273d6490 Mon Sep 17 00:00:00 2001 From: julian Date: Thu, 3 Dec 1998 02:27:35 +0000 Subject: Reviewed by: Don Lewis Submitted by: Kirk McKusick Obtained from: Mckusick, BSDI and a host of others This exactly matches Kirks sources imported under the Tag MCKUSICK2. These are as supplied by kirk with one small change needed to compile under freeBSD. Some FreeBSD patches will be added back, though many have been added to Kirk's sources already. --- sbin/fsck_ifs/pass1b.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'sbin/fsck_ifs/pass1b.c') diff --git a/sbin/fsck_ifs/pass1b.c b/sbin/fsck_ifs/pass1b.c index 32a3be7..65ff49c 100644 --- a/sbin/fsck_ifs/pass1b.c +++ b/sbin/fsck_ifs/pass1b.c @@ -32,14 +32,11 @@ */ #ifndef lint -#if 0 static const char sccsid[] = "@(#)pass1b.c 8.4 (Berkeley) 4/28/95"; -#endif -static const char rcsid[] = - "$Id$"; #endif /* not lint */ #include +#include #include #include @@ -72,7 +69,7 @@ pass1b() if (dp == NULL) continue; idesc.id_number = inumber; - if (statemap[inumber] != USTATE && + if (inoinfo(inumber)->ino_state != USTATE && (ckinode(dp, &idesc) & STOP)) return; } -- cgit v1.1