diff options
| -rwxr-xr-x | xlators/mount/fuse/utils/mount.glusterfs.in | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/xlators/mount/fuse/utils/mount.glusterfs.in b/xlators/mount/fuse/utils/mount.glusterfs.in index 7852e385339..c8c32c66eb6 100755 --- a/xlators/mount/fuse/utils/mount.glusterfs.in +++ b/xlators/mount/fuse/utils/mount.glusterfs.in @@ -560,12 +560,15 @@ main ()          ## `mount` specifies options as a last argument          shift 2;      fi -    while getopts "Vo:h" opt; do +    while getopts "Vo:hn" opt; do          case "${opt}" in              o)                  parse_options ${OPTARG};  		shift 2;                  ;; +            n) +		shift 1; +                ;;              V)                  ${cmd_line} -V;                  exit 0;  | 
