diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2004-03-30 07:24:29 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2004-03-30 07:24:29 +0000 |
commit | 98667e21f5657c7f4031523dc675c352825855d1 (patch) | |
tree | 051dbd52f8dd76a2680ae3fee7428a339380aeae /lib/mount.c | |
parent | 77f39949dc5174bc42be9ecf2dda6119e1dd506b (diff) | |
download | libfuse-98667e21f5657c7f4031523dc675c352825855d1.tar.gz |
fusermount fix
Diffstat (limited to 'lib/mount.c')
-rw-r--r-- | lib/mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mount.c b/lib/mount.c index 7b67203..53162a5 100644 --- a/lib/mount.c +++ b/lib/mount.c @@ -71,7 +71,7 @@ void fuse_unmount(const char *mountpoint) const char *mountprog = FUSERMOUNT_PROG; char umount_cmd[1024]; - snprintf(umount_cmd, sizeof(umount_cmd) - 1, "%s -u -q %s", mountprog, + snprintf(umount_cmd, sizeof(umount_cmd) - 1, "%s -u -q -z %s", mountprog, mountpoint); umount_cmd[sizeof(umount_cmd) - 1] = '\0'; |