follow the s/fuse_mount_ioslave/fuse_mount/g API change
authorMark Glines <mark@glines.org>
Fri, 19 Apr 2002 19:12:22 +0000 (19:12 +0000)
committerMark Glines <mark@glines.org>
Fri, 19 Apr 2002 19:12:22 +0000 (19:12 +0000)
perl/Fuse.xs

index f062a63cefdc39e1d3170cf2592fc91b54e20d85..7260e302279e8b1190c2e303ffb8049751c27dd5 100644 (file)
@@ -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));