diff options
Diffstat (limited to 'lib/mount_bsd.c')
-rw-r--r-- | lib/mount_bsd.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/mount_bsd.c b/lib/mount_bsd.c index 0d886b0..4703d94 100644 --- a/lib/mount_bsd.c +++ b/lib/mount_bsd.c @@ -2,6 +2,8 @@ FUSE: Filesystem in Userspace Copyright (C) 2005-2008 Csaba Henk <csaba.henk@creo.hu> + Architecture specific file system mounting (FreeBSD). + This program can be distributed under the terms of the GNU LGPLv2. See the file COPYING.LIB. */ @@ -95,7 +97,9 @@ static const struct fuse_opt fuse_mount_opts[] = { void fuse_mount_help(void) { - printf(" -o allow_root allow access to root\n"); + printf( +"Mount options:\n" +" -o allow_root allow access to root\n"); system(FUSERMOUNT_PROG " --help"); fputc('\n', stderr); } |