diff options
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'; |