aboutsummaryrefslogtreecommitdiff
path: root/lib/mount.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mount.c')
-rw-r--r--lib/mount.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/mount.c b/lib/mount.c
index d19242e..2f7e068 100644
--- a/lib/mount.c
+++ b/lib/mount.c
@@ -275,7 +275,8 @@ void fuse_kern_unmount(const char *mountpoint, int fd)
close(fd);
/* If file poll returns POLLERR on the device file descriptor,
- then the filesystem is already unmounted */
+ then the filesystem is already unmounted or the connection
+ was severed via /sys/fs/fuse/connections/NNN/abort */
if (res == 1 && (pfd.revents & POLLERR))
return;
}