aboutsummaryrefslogtreecommitdiff
path: root/sbin/mount
diff options
context:
space:
mode:
authorPawel Jakub Dawidek <pjd@FreeBSD.org>2006-10-31 21:54:51 +0000
committerPawel Jakub Dawidek <pjd@FreeBSD.org>2006-10-31 21:54:51 +0000
commitac88569c5ae3e33199d63a862fcd821d04ce65a7 (patch)
tree775a389773518dd2552923fdbb327c00f1abcaaf /sbin/mount
parent868c68ed1db7cc40afda94217d1182d0a82eea71 (diff)
Notes
Diffstat (limited to 'sbin/mount')
-rw-r--r--sbin/mount/mount.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c
index 63a9728668f0..9e5de112b63f 100644
--- a/sbin/mount/mount.c
+++ b/sbin/mount/mount.c
@@ -106,6 +106,7 @@ static struct opt {
{ MNT_SOFTDEP, "soft-updates" },
{ MNT_MULTILABEL, "multilabel" },
{ MNT_ACLS, "acls" },
+ { MNT_GJOURNAL, "gjournal" },
{ 0, NULL }
};
@@ -833,6 +834,7 @@ 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);
}