Merge pull request #202 from giuseppe/accept-ro

main.c: accept "ro" as a mount option
This commit is contained in:
Daniel J Walsh 2020-04-20 06:43:24 -04:00 committed by GitHub
commit f040ab0343
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
main.c
View File

@ -4993,6 +4993,8 @@ fuse_opt_proc (void *data, const char *arg, int key, struct fuse_args *outargs)
return 1;
if (strcmp (arg, "max_write") == 0)
return 1;
if (strcmp (arg, "ro") == 0)
return 1;
if (key == FUSE_OPT_KEY_NONOPT)
{