From 7574b0559706597058a9cb3c056204935f9b00c5 Mon Sep 17 00:00:00 2001 From: Mark Glines Date: Fri, 19 Apr 2002 19:12:22 +0000 Subject: [PATCH] follow the s/fuse_mount_ioslave/fuse_mount/g API change --- perl/Fuse.xs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)); -- 2.30.2