Fix mount -p and mount -u -ocurrent on gjournaled FS

PR:		bin/120162
Submitted by:	Niki Denev
MFC after:	1 week
This commit is contained in:
Matteo Riondato 2008-02-04 07:37:56 +00:00
parent 8bd9e9f2df
commit b42024b241
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=175964

View File

@ -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);
}