diff options
| author | lukem <lukem@NetBSD.org> | 2003-01-05 22:59:35 +0000 |
|---|---|---|
| committer | lukem <lukem@NetBSD.org> | 2003-01-05 22:59:35 +0000 |
| commit | ef98b9ddcaf43fca19085271892fd5f101d1b7e4 (patch) | |
| tree | 7e06926cbfa74cfc2e13e6ce6b06dd5be27693f6 | |
| parent | 52b083a154f9a78f0a55f9a6fdf455482fb56b38 (diff) | |
Fix logic error I introduced recently into mount_critical_filesystems().
Noted by kilbi@rad.rwth-aachen.de in [bin/19703].
| -rw-r--r-- | etc/rc.subr | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/etc/rc.subr b/etc/rc.subr index e565a015781..98ca2032bc8 100644 --- a/etc/rc.subr +++ b/etc/rc.subr @@ -1,4 +1,4 @@ -# $NetBSD: rc.subr,v 1.54 2003/01/05 11:40:29 lukem Exp $ +# $NetBSD: rc.subr,v 1.55 2003/01/05 22:59:35 lukem Exp $ # # Copyright (c) 1997-2002 The NetBSD Foundation, Inc. # All rights reserved. @@ -98,6 +98,8 @@ mount_critical_filesystems() fi done if $_ismounted; then + : + else mount $_fs >/dev/null 2>&1 fi ) |
