Browse Source

Use "allow_other" instead of "allow_user".

Maybe I'm missing something, but my version of FUSE does not seem
to document "allow_user" at all.
Peter Pentchev 13 years ago
parent
commit
4315789558
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      filejoinfs.c

+ 1
- 1
filejoinfs.c View File

@@ -280,7 +280,7 @@ int main(int argc, char *argv[]) {
280 280
 	fuse_argv[0] = argv[0];
281 281
 	fuse_argv[1] = mountpoint_file;
282 282
 	fuse_argv[2] = "-o";
283
-	fuse_argv[3] = "nonempty,allow_user,direct_io";
283
+	fuse_argv[3] = "nonempty,allow_other,direct_io";
284 284
 	fuse_argv[4]  = 0;
285 285
 
286 286
 	ret = fuse_main(4, fuse_argv, &concatfs_op, NULL);

Loading…
Cancel
Save