From b42024b241a3e1109c69096110ee984e37b5c232 Mon Sep 17 00:00:00 2001 From: Matteo Riondato Date: Mon, 4 Feb 2008 07:37:56 +0000 Subject: [PATCH] Fix mount -p and mount -u -ocurrent on gjournaled FS PR: bin/120162 Submitted by: Niki Denev MFC after: 1 week --- sbin/mount/mount.c | 1 - 1 file changed, 1 deletion(-) diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c index 063660b5f0c7..03688d3563c1 100644 --- a/sbin/mount/mount.c +++ b/sbin/mount/mount.c @@ -877,7 +877,6 @@ flags2opts(int flags) if (flags & MNT_SUIDDIR) res = catopt(res, "suiddir"); if (flags & MNT_MULTILABEL) res = catopt(res, "multilabel"); if (flags & MNT_ACLS) res = catopt(res, "acls"); - if (flags & MNT_GJOURNAL) res = catopt(res, "gjournal"); return (res); }