seems the arguments for fuse_mount() have changed slightly.
authorMark Glines <mark@glines.org>
Fri, 18 Jul 2003 13:59:44 +0000 (13:59 +0000)
committerMark Glines <mark@glines.org>
Fri, 18 Jul 2003 13:59:44 +0000 (13:59 +0000)
perl/Fuse.xs

index 69d49f05ac4ad22136365526f747cb4ec0c6d4d1..0a460b941089623817a46eb0f6efcf4c757d0071 100644 (file)
@@ -566,7 +566,7 @@ perl_fuse_main(...)
                }
        }
        /* FIXME: need to pass fusermount arguments */
-       fd = fuse_mount(mountpoint,"");
+       fd = fuse_mount(mountpoint,NULL);
        if(fd < 0)
                croak("could not mount fuse filesystem!");
        fuse_loop(fuse_new(fd,debug ? FUSE_DEBUG : 0,&fops));