hurdextras-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Changes to libfuse/main.c


From: Stefan Siegl
Subject: Changes to libfuse/main.c
Date: Sat, 10 Dec 2005 09:13:45 -0500

Index: libfuse/main.c
diff -u libfuse/main.c:1.14 libfuse/main.c:1.15
--- libfuse/main.c:1.14 Sat Dec 10 14:02:42 2005
+++ libfuse/main.c      Sat Dec 10 14:13:45 2005
@@ -195,13 +195,27 @@
   if(opt_help)
     {
       fprintf(opt_help,
-             "\nusage: %s [options]\n\n"
-             "Options:\n"
-             "    -d[FILENAME]        enable debug output (default=stderr)\n"
-             "    -s                  disable multi-threaded operation\n"
-             "    -o opt,[opt...]     mount options\n"
-             "    -h                  print help\n"
-             "\n", translat_path);
+             "usage: %s [FUSE options]\n\n"
+             "FUSE Options:\n"
+             "    -d[FILENAME]           "
+             "enable debug output (default=stderr)\n"
+             "    -s                     disable multi-threaded operation\n"
+             /* "    -r                     "
+              * "mount read only (equivalent to '-o ro')\n" */
+             "    -o opt,[opt...]        mount options\n"
+             "    -h                     print help\n"
+             "\n"
+             "Mount options:\n"
+             "    default_permissions    enable permission checking\n"
+             "    allow_other            allow access to other users\n"
+             "    allow_root             allow access to root\n"
+             "    use_ino                let filesystem set inode numbers\n"
+             /* "    readdir_ino            "
+              * "try to fill in d_ino in readdir\n" */
+             "    umask                  set file permissions (octal)\n"
+             "    uid                    set file owner\n"
+             "    gid                    set file group\n",
+             translat_path);
 
       exit(opt_help == stdout ? 0 : 1);
     }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]