aboutsummaryrefslogtreecommitdiffstats
path: root/perl
diff options
context:
space:
mode:
authorMark Glines <mark@glines.org>2002-04-19 19:12:22 +0000
committerMark Glines <mark@glines.org>2002-04-19 19:12:22 +0000
commit7574b0559706597058a9cb3c056204935f9b00c5 (patch)
tree1a235f6941dd48981eb17b5cbf7be2672f69e7c8 /perl
parenta4b0c77de08fca142ae22c74b3317930af404baa (diff)
downloadlibfuse-7574b0559706597058a9cb3c056204935f9b00c5.tar.gz
follow the s/fuse_mount_ioslave/fuse_mount/g API change
Diffstat (limited to 'perl')
-rw-r--r--perl/Fuse.xs3
1 files changed, 2 insertions, 1 deletions
diff --git a/perl/Fuse.xs b/perl/Fuse.xs
index f062a63..7260e30 100644
--- a/perl/Fuse.xs
+++ b/perl/Fuse.xs
@@ -562,7 +562,8 @@ perl_fuse_main(...)
croak("arg is not a code reference!");
}
}
- fd = fuse_mount_ioslave(mountpoint);
+ /* FIXME: need to pass fusermount arguments */
+ fd = fuse_mount(mountpoint,"");
if(fd < 0)
croak("could not mount fuse filesystem!");
fuse_loop(fuse_new(fd,debug ? FUSE_DEBUG : 0,&fops));