diff options
author | Mark Glines <mark@glines.org> | 2002-04-19 19:12:22 +0000 |
---|---|---|
committer | Mark Glines <mark@glines.org> | 2002-04-19 19:12:22 +0000 |
commit | 7574b0559706597058a9cb3c056204935f9b00c5 (patch) | |
tree | 1a235f6941dd48981eb17b5cbf7be2672f69e7c8 /perl | |
parent | a4b0c77de08fca142ae22c74b3317930af404baa (diff) | |
download | libfuse-7574b0559706597058a9cb3c056204935f9b00c5.tar.gz |
follow the s/fuse_mount_ioslave/fuse_mount/g API change
Diffstat (limited to 'perl')
-rw-r--r-- | perl/Fuse.xs | 3 |
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)); |