From owner-freebsd-current Sat Apr 7 0: 8:52 2001 Delivered-To: freebsd-current@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by hub.freebsd.org (Postfix) with ESMTP id D6A1537B43F for ; Sat, 7 Apr 2001 00:08:49 -0700 (PDT) (envelope-from phk@critter.freebsd.dk) Received: from critter (localhost [127.0.0.1]) by critter.freebsd.dk (8.11.3/8.11.3) with ESMTP id f3778fC52674; Sat, 7 Apr 2001 09:08:41 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: David Wolfskill Cc: freebsd-current@FreeBSD.ORG Subject: Re: fstab weirdness / UPDATING In-Reply-To: Your message of "Fri, 06 Apr 2001 19:32:12 PDT." <200104070232.f372WCT50772@bunrab.catwhisker.org> Date: Sat, 07 Apr 2001 09:08:41 +0200 Message-ID: <52672.986627321@critter> From: Poul-Henning Kamp Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG 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 phk@FreeBSD.ORG | 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 majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message