diff options
| -rw-r--r-- | xlators/mount/fuse/src/fuse-helpers.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/xlators/mount/fuse/src/fuse-helpers.c b/xlators/mount/fuse/src/fuse-helpers.c index c582291a1d8..fb6acb1abdd 100644 --- a/xlators/mount/fuse/src/fuse-helpers.c +++ b/xlators/mount/fuse/src/fuse-helpers.c @@ -584,10 +584,10 @@ fuse_ignore_xattr_set (fuse_private_t *priv, char *key)                  goto out;          /* trusted NS check */ -        if (!((fnmatch (PRIV_XA_NS".glusterfs.*.xtime", key, FNM_PERIOD) == 0) -              || (fnmatch (PRIV_XA_NS".glusterfs.volume-mark", +        if (!((fnmatch ("*.glusterfs.*.xtime", key, FNM_PERIOD) == 0) +              || (fnmatch ("*.glusterfs.volume-mark",                             key, FNM_PERIOD) == 0) -              || (fnmatch (PRIV_XA_NS".glusterfs.volume-mark.*", +              || (fnmatch ("*.glusterfs.volume-mark.*",                             key, FNM_PERIOD) == 0)))                  ret = -1;  | 
