From 004a8c763ea66f91ed7a2a7ea9f28b4a16ba400c Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Sat, 30 Sep 2006 16:41:12 +0000 Subject: fusermount: revert modprobe change --- util/fusermount.c | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) (limited to 'util') diff --git a/util/fusermount.c b/util/fusermount.c index 1843f50..dc30fde 100644 --- a/util/fusermount.c +++ b/util/fusermount.c @@ -851,17 +851,7 @@ static int try_open_fuse_device(char **devp) static int open_fuse_device(char **devp) { - 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); + int fd = try_open_fuse_device(devp); if (fd >= -1) return fd; -- cgit v1.2.3