summaryrefslogtreecommitdiff
path: root/src/mfs_vnops.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mfs_vnops.c')
-rwxr-xr-xsrc/mfs_vnops.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mfs_vnops.c b/src/mfs_vnops.c
index fd73cd5..dd06d11 100755
--- a/src/mfs_vnops.c
+++ b/src/mfs_vnops.c
@@ -257,8 +257,12 @@ static int mfs_fsync(const char *path, int datasync,
struct fuse_file_info *fi)
{
int fd;
-
DEBUG("fsync path %s\n", path);
+
+ if (strcmp(path, "/.config") == 0) {
+ return (0);
+ }
+
fd = (int)fi->fh;
/* Fd is not valid, return fsync error. */
if (fd < 0)