diff options
author | jhb <jhb@FreeBSD.org> | 2002-11-12 20:40:15 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2002-11-12 20:40:15 +0000 |
commit | c5b5f6837fec3c5faf458aaeb1fbaf31fd624898 (patch) | |
tree | d1792a87c0b03cdcec6c9812d28dc94286c1f0e9 /usr.sbin/sysinstall/label.c | |
parent | f170e9b712c5f68fa754d23635557ae2cb301f0a (diff) | |
download | FreeBSD-src-c5b5f6837fec3c5faf458aaeb1fbaf31fd624898.zip FreeBSD-src-c5b5f6837fec3c5faf458aaeb1fbaf31fd624898.tar.gz |
Doh, fix a bug in previous commit. The default is to newfs for new
partitions, not to !newfs.
Diffstat (limited to 'usr.sbin/sysinstall/label.c')
-rw-r--r-- | usr.sbin/sysinstall/label.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/sysinstall/label.c b/usr.sbin/sysinstall/label.c index 9e1f5f7..38c1e19 100644 --- a/usr.sbin/sysinstall/label.c +++ b/usr.sbin/sysinstall/label.c @@ -385,7 +385,7 @@ get_mountpoint(struct chunk *old) else if (old) old->flags &= ~CHUNK_IS_ROOT; - newfs = FALSE; + newfs = TRUE; if (tmp) { newfs = tmp->newfs; safe_free(tmp); |