aboutsummaryrefslogtreecommitdiffstats
path: root/lib/mount.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mount.c')
-rw-r--r--lib/mount.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/mount.c b/lib/mount.c
index fb17c00..5c892f6 100644
--- a/lib/mount.c
+++ b/lib/mount.c
@@ -2,6 +2,8 @@
FUSE: Filesystem in Userspace
Copyright (C) 2001-2007 Miklos Szeredi <miklos@szeredi.hu>
+ Architecture specific file system mounting (Linux).
+
This program can be distributed under the terms of the GNU LGPLv2.
See the file COPYING.LIB.
*/
@@ -99,7 +101,6 @@ static const struct fuse_opt fuse_mount_opts[] = {
FUSE_OPT_KEY("defcontext=", KEY_KERN_OPT),
FUSE_OPT_KEY("rootcontext=", KEY_KERN_OPT),
FUSE_OPT_KEY("max_read=", KEY_KERN_OPT),
- FUSE_OPT_KEY("max_read=", FUSE_OPT_KEY_KEEP),
FUSE_OPT_KEY("user=", KEY_MTAB_OPT),
FUSE_OPT_KEY("-r", KEY_RO),
FUSE_OPT_KEY("ro", KEY_KERN_FLAG),
@@ -121,6 +122,7 @@ static const struct fuse_opt fuse_mount_opts[] = {
void fuse_mount_help(void)
{
printf(
+"Mount options:\n"
" -o allow_other allow access to other users\n"
" -o allow_root allow access to root\n"
" -o auto_unmount auto unmount on process termination\n"
@@ -129,8 +131,7 @@ void fuse_mount_help(void)
" -o fsname=NAME set filesystem name\n"
" -o subtype=NAME set filesystem type\n"
" -o large_read issue large read requests (2.4 only)\n"
-" -o max_read=N set maximum size of read requests\n"
-"\n");
+" -o max_read=N set maximum size of read requests\n\n");
}
static void exec_fusermount(const char *argv[])