diff options
| -rw-r--r-- | xlators/mount/fuse/src/fuse-helpers.c | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/xlators/mount/fuse/src/fuse-helpers.c b/xlators/mount/fuse/src/fuse-helpers.c index 577be2fef4e..e72669a9e99 100644 --- a/xlators/mount/fuse/src/fuse-helpers.c +++ b/xlators/mount/fuse/src/fuse-helpers.c @@ -245,6 +245,11 @@ static void get_groups(fuse_private_t *priv, call_frame_t *frame)  	const gid_list_t *gl;  	gid_list_t agl; +        if (-1 == priv->gid_cache_timeout) { +                frame->root->ngrps = 0; +                return; +        } +  	if (!priv->gid_cache_timeout) {  		frame_fill_groups(frame);  		return;  | 
