aboutsummaryrefslogtreecommitdiff
path: root/lib/mount.c
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2016-11-23 15:59:52 -0800
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2016-11-29 08:25:52 -0800
commit56fde4ba9ee0268ece42512a00782b2064537b15 (patch)
treeeb683a64fe89098de9be107272b39ef130e4ae74 /lib/mount.c
parent8e9cf9ecc6241f740edfa5bdc3533a2d0f2bb3e1 (diff)
Improve documentation of fuse_session_unmount
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;
}