From: Mark Glines Date: Fri, 19 Apr 2002 19:12:22 +0000 (+0000) Subject: follow the s/fuse_mount_ioslave/fuse_mount/g API change X-Git-Tag: debian_version_1_0-1~39 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7574b0559706597058a9cb3c056204935f9b00c5;p=qemu-gpiodev%2Flibfuse.git follow the s/fuse_mount_ioslave/fuse_mount/g API change --- 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));