aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/sade/label.c
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2002-11-12 20:40:15 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2002-11-12 20:40:15 +0000
commitff02a1197f4dcf440255a0be9e29db8f021088a4 (patch)
treed1792a87c0b03cdcec6c9812d28dc94286c1f0e9 /usr.sbin/sade/label.c
parenta872d3c73b53b932dc0c378941ea18bad07cba58 (diff)
downloadsrc-ff02a1197f4dcf440255a0be9e29db8f021088a4.tar.gz
src-ff02a1197f4dcf440255a0be9e29db8f021088a4.zip
Doh, fix a bug in previous commit. The default is to newfs for new
partitions, not to !newfs.
Notes
Notes: svn path=/head/; revision=106823
Diffstat (limited to 'usr.sbin/sade/label.c')
-rw-r--r--usr.sbin/sade/label.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/sade/label.c b/usr.sbin/sade/label.c
index 9e1f5f74beb5..38c1e19388e8 100644
--- a/usr.sbin/sade/label.c
+++ b/usr.sbin/sade/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);