diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2004-07-23 17:35:27 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2004-07-23 17:35:27 +0000 |
commit | 103a89f37a47e63c41b23f8b8101bb244981497b (patch) | |
tree | dea3eaeebafdf0ee11f12343e27175152e0856dc | |
parent | bd7661b82698c88f08cb82e57cc229cd9df8a3d4 (diff) | |
download | libfuse-103a89f37a47e63c41b23f8b8101bb244981497b.tar.gz |
clean up mount option passing
-rw-r--r-- | perl/Fuse.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl/Fuse.xs b/perl/Fuse.xs index fa75e5c..19bbe4f 100644 --- a/perl/Fuse.xs +++ b/perl/Fuse.xs @@ -569,4 +569,4 @@ perl_fuse_main(...) fd = fuse_mount(mountpoint,NULL); if(fd < 0) croak("could not mount fuse filesystem!"); - fuse_loop(fuse_new(fd,debug ? FUSE_DEBUG : 0,&fops)); + fuse_loop(fuse_new(fd,debug ? "debug" : NULL,&fops)); |