diff options
author | 2020-05-19 12:49:51 +0000 | |
---|---|---|
committer | 2020-05-19 12:49:51 +0000 | |
commit | 1a758a47ee706ba43eacdeaad51c4f2c0d4859e9 (patch) | |
tree | ea5bd5efdc8a60e343b7a84baea2f6758d14f091 | |
parent | Copy ownership/permissions from the mountpoint to FFS2 MFS, as already done (diff) | |
download | wireguard-openbsd-1a758a47ee706ba43eacdeaad51c4f2c0d4859e9.tar.xz wireguard-openbsd-1a758a47ee706ba43eacdeaad51c4f2c0d4859e9.zip |
Move back to FFS1 by default for MFS as suggested by millert@. OK otto@
-rw-r--r-- | sbin/newfs/newfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/newfs/newfs.c b/sbin/newfs/newfs.c index d5f0a765413..1f279908886 100644 --- a/sbin/newfs/newfs.c +++ b/sbin/newfs/newfs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: newfs.c,v 1.113 2020/05/18 06:20:44 otto Exp $ */ +/* $OpenBSD: newfs.c,v 1.114 2020/05/19 12:49:51 sthen Exp $ */ /* $NetBSD: newfs.c,v 1.20 1996/05/16 07:13:03 thorpej Exp $ */ /* @@ -194,7 +194,7 @@ main(int argc, char *argv[]) u_int64_t nsecs; if (strstr(__progname, "mfs")) - mfs = Nflag = quiet = 1; + mfs = Nflag = quiet = Oflag = 1; getphysmem(); maxpartitions = getmaxpartitions(); |