diff options
author | Anand Avati <avati@redhat.com> | 2013-11-19 23:45:32 -0800 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2013-11-20 14:42:29 -0800 |
commit | 5e31894fbda74a524e1fe30d26f7ed82a77eb5ff (patch) | |
tree | 001a212ea838942c8c0b1cf040c165b2c0468ac5 /libglusterfs/src | |
parent | ff7ee1ecd7a5562b79522853c8699f07df7fafc0 (diff) |
mount/fuse: handle --gid-timeout=0 properly
Fix the bug which was using the timeout value as a flag to indicate
if it was set (and hence would fail when timeout=0 would evaluate
as False)
Change-Id: Ie9a8f28d35603458cdac26c9a4e0343e7eda7344
BUG: 1032438
Signed-off-by: Anand Avati <avati@redhat.com>
Reviewed-on: http://review.gluster.org/6308
Reviewed-by: Raghavendra Talur <rtalur@redhat.com>
Reviewed-by: Harshavardhana <harsha@harshavardhana.net>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Diffstat (limited to 'libglusterfs/src')
-rw-r--r-- | libglusterfs/src/glusterfs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libglusterfs/src/glusterfs.h b/libglusterfs/src/glusterfs.h index a2fd48db570..d8c7060f7ef 100644 --- a/libglusterfs/src/glusterfs.h +++ b/libglusterfs/src/glusterfs.h @@ -340,6 +340,7 @@ struct _cmd_args { int mac_compat; int fopen_keep_cache; int gid_timeout; + char gid_timeout_set; int aux_gfid_mount; struct list_head xlator_options; /* list of xlator_option_t */ |