From: Miklos Szeredi Date: Mon, 8 Nov 2010 14:47:36 +0000 (+0100) Subject: Open /dev/null for write X-Git-Tag: fuse_2_9_0~100 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=9b2ab7ebed39ab680e0d9a489e213cb8c4f49970;p=qemu-gpiodev%2Flibfuse.git Open /dev/null for write Open /dev/null for write instead of read for redirecting stdout and stderr --- diff --git a/ChangeLog b/ChangeLog index 7b202dd..b6bcda3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,9 @@ * Fix check for read-only fs in mtab update + * Open /dev/null for write instead of read for redirecting stdout + and stderr + 2010-10-14 Miklos Szeredi * Use LTLIBICONV when linking libfuse. This fixes building against diff --git a/lib/mount_util.c b/lib/mount_util.c index dbf9219..25b7e43 100644 --- a/lib/mount_util.c +++ b/lib/mount_util.c @@ -163,7 +163,7 @@ static int add_mount(const char *progname, const char *fsname, * Hide output, because old versions don't support * --no-canonicalize */ - int fd = open("/dev/null", O_RDONLY); + int fd = open("/dev/null", O_WRONLY); dup2(fd, 1); dup2(fd, 2);