diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2001-12-20 12:17:25 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2001-12-20 12:17:25 +0000 |
commit | 2e50d4376f3124a87d5723ae66c09fa71c7ecf88 (patch) | |
tree | 9994175ffb91284c2d906c89dfcfc903ba6fb704 /lib/helper.c | |
parent | 20dd496d09b6f698eba37c64c7f8ad9745db1c02 (diff) | |
download | libfuse-2e50d4376f3124a87d5723ae66c09fa71c7ecf88.tar.gz |
preparations for cred checking in fs
Diffstat (limited to 'lib/helper.c')
-rw-r--r-- | lib/helper.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/helper.c b/lib/helper.c index f4a8a16..556a1c1 100644 --- a/lib/helper.c +++ b/lib/helper.c @@ -143,8 +143,7 @@ void fuse_main(int argc, char *argv[], const struct fuse_operations *op) exit(1); } - fuse = fuse_new(fd, flags); - fuse_set_operations(fuse, op); + fuse = fuse_new(fd, flags, op); if(multithreaded) fuse_loop_mt(fuse); |