I found that the README document states that the "umask" option is specified with "-U", but the source code handles the "umask" option with "-K"
READNE.md
[-U UMASK|--umask=UMASK]
Override the permission bits in st_mode set by the filesystem.
The resulting permission bits are the ones missing from the given umask value.
The value is given in octal representation.
fuse-nfs.c
case 'K':
snprintf(fuse_Umask_arg, sizeof(fuse_Umask_arg), "-oumask=%s", optarg);
fuse_nfs_argv[fuse_nfs_argc++] = fuse_Umask_arg;
break;
I found that the README document states that the "umask" option is specified with "-U", but the source code handles the "umask" option with "-K"
READNE.md
fuse-nfs.c
Print help also has same error