From cb075c8f3c764faf2d2ad9584261db357c1cb174 Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Mon, 9 Jan 2006 11:33:04 +0000 Subject: fix --- util/fusermount.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'util') diff --git a/util/fusermount.c b/util/fusermount.c index abe78b9..1f6e90d 100644 --- a/util/fusermount.c +++ b/util/fusermount.c @@ -46,6 +46,10 @@ #define FUSE_VERSION_FILE_OLD "/proc/fs/fuse/version" #define FUSE_CONF "/etc/fuse.conf" +#ifndef MS_DIRSYNC +#define MS_DIRSYNC 128 +#endif + static const char *progname; static int user_allow_other = 0; @@ -431,6 +435,7 @@ static struct mount_flags mount_flags[] = { {"sync", MS_SYNCHRONOUS, 1, 1}, {"atime", MS_NOATIME, 0, 1}, {"noatime", MS_NOATIME, 1, 1}, + {"dirsync", MS_DIRSYNC, 1, 1}, {NULL, 0, 0, 0} }; -- cgit v1.2.3