Yup, seems like i goofed that patch. Can you try this for me ?
Index: preen.c
===================================================================
RCS file: /home/ncvs/src/sbin/fsck/preen.c,v
retrieving revision 1.22
diff -u -r1.22 preen.c
--- preen.c 2001/03/30 08:01:34 1.22
+++ preen.c 2001/04/07 07:01:47
@@ -178,7 +178,6 @@
continue;
}
-
if (WIFEXITED(status))
retcode = WEXITSTATUS(status);
else
@@ -215,6 +214,9 @@
if (TAILQ_EMPTY(&d->d_part)) {
TAILQ_REMOVE(&diskh, d, d_entries);
ndisks--;
+ } else {
+ if ((ret = startdisk(d, checkit)) != 0)
+ return ret;
}
}
if (flags & CHECK_DEBUG) {
--
Poul-Henning Kamp | UNIX since Zilog Zeus 3.20
[EMAIL PROTECTED] | TCP/IP since RFC 956
FreeBSD committer | BSD since 4.3-tahoe
Never attribute to malice what can adequately be explained by incompetence.
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message