From 543087d48121b8628e875108aaa190af88dc4496 Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Fri, 18 Aug 2006 19:26:23 +0000 Subject: fusermount improvement --- util/fusermount.c | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) (limited to 'util/fusermount.c') diff --git a/util/fusermount.c b/util/fusermount.c index 6d3ef97..89ecb2c 100644 --- a/util/fusermount.c +++ b/util/fusermount.c @@ -841,14 +841,23 @@ static int try_open_fuse_device(char **devp) static int open_fuse_device(char **devp) { - int fd = try_open_fuse_device(devp); - if (fd >= 0) + int fd; + + if (getuid() == 0) { + fd = try_open_fuse_device(devp); + if (fd >= -1) + return fd; + + system("modprobe fuse"); + } + + fd = try_open_fuse_device(devp); + if (fd >= -1) return fd; - if (fd == -2) - fprintf(stderr, - "%s: fuse device not found, try 'modprobe fuse' first\n", - progname); + fprintf(stderr, "%s: fuse device not found, try 'modprobe fuse' first\n", + progname); + return -1; } -- cgit v1.2.3