aboutsummaryrefslogtreecommitdiff
path: root/lib/mount_bsd.c
diff options
context:
space:
mode:
authorGravatar Miklos Szeredi <mszeredi@suse.cz>2013-07-26 16:20:28 +0200
committerGravatar Miklos Szeredi <mszeredi@suse.cz>2013-07-26 16:20:28 +0200
commit9ffe64abe1916d1f82ad593e5106fdfaad92e2d8 (patch)
tree25e0f3a370eb656ccec73c388f6b44870fb1225e /lib/mount_bsd.c
parent3c3f03b81f3027ef0a25bd790605265b384b93c1 (diff)
Print help on stdout instead of stderr
Diffstat (limited to 'lib/mount_bsd.c')
-rw-r--r--lib/mount_bsd.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/mount_bsd.c b/lib/mount_bsd.c
index 52c55f5..8f3acf0 100644
--- a/lib/mount_bsd.c
+++ b/lib/mount_bsd.c
@@ -102,9 +102,7 @@ static const struct fuse_opt fuse_mount_opts[] = {
static void mount_help(void)
{
- fprintf(stderr,
- " -o allow_root allow access to root\n"
- );
+ printf(" -o allow_root allow access to root\n");
system(FUSERMOUNT_PROG " --help");
fputc('\n', stderr);
}