summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2007-04-05 18:39:57 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2007-04-05 18:39:57 +0000
commitf8566c5585d61b57881ff39205c6d89abafa66dd (patch)
tree6c1c148ac5ac15a20f68005d9ca4ef48ec3c6149
parenta4a71e2c64b2deddf9b07d69adc1790fe1780787 (diff)
downloadfuse-f8566c5585d61b57881ff39205c6d89abafa66dd.tar.gz
Use "fusectl" as the device for the fusectl filesystem. Debian Bug#417945
-rw-r--r--ChangeLog3
-rwxr-xr-xutil/init_script2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 64e29c7..d5a254e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,9 @@
* mount.fuse should handle spaces in paths. Debian Bug#417834.
Reported by Alexander Blazej
+ * Use "fusectl" as the device for the fusectl filesystem. Debian
+ Bug#417945. Reported by Laurent Bonnaud
+
2007-03-05 Miklos Szeredi <miklos@szeredi.hu>
* mount.fuse should use /bin/bash. Debian Bug#413403. Reported
diff --git a/util/init_script b/util/init_script
index 0ca395f..2d1bd29 100755
--- a/util/init_script
+++ b/util/init_script
@@ -28,7 +28,7 @@ case "$1" in
fi
if grep -qw fusectl /proc/filesystems && \
! grep -qw $MOUNTPOINT /proc/mounts; then
- mount -t fusectl none $MOUNTPOINT >/dev/null 2>&1 || \
+ mount -t fusectl fusectl $MOUNTPOINT >/dev/null 2>&1 || \
error "mounting control filesystem"
fi
echo "done."