diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | example/fusexmp_fh.c | 2 | ||||
-rwxr-xr-x | util/init_script | 2 |
3 files changed, 9 insertions, 2 deletions
@@ -24,12 +24,19 @@ * Replace utils/mount.fuse "sh" script with a "C" program +2007-04-15 Miklos Szeredi <miklos@szeredi.hu> + + * Add -lulockmgr to compilation comment in fusexmp_fh.c + 2007-04-05 Miklos Szeredi <miklos@szeredi.hu> * Check for iconv. Patch by Csaba Henk * Add direct umounting + * Use "fusectl" as the device for the fusectl filesystem. Debian + Bug#417945. Reported by Laurent Bonnaud + 2007-04-01 Csaba Henk <csaba.henk@creo.hu> * Fix some FreeBSD related macros. diff --git a/example/fusexmp_fh.c b/example/fusexmp_fh.c index 8daee03..daacb71 100644 --- a/example/fusexmp_fh.c +++ b/example/fusexmp_fh.c @@ -5,7 +5,7 @@ This program can be distributed under the terms of the GNU GPL. See the file COPYING. - gcc -Wall `pkg-config fuse --cflags --libs` fusexmp_fh.c -o fusexmp_fh + gcc -Wall `pkg-config fuse --cflags --libs` -lulockmgr fusexmp_fh.c -o fusexmp_fh */ #define FUSE_USE_VERSION 26 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." |