artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
222a1a4
)
Add call to fuse_remove_signal_handlers(3) in fuse_teardown(3) to do the
author
helg
<helg@openbsd.org>
Mon, 18 Dec 2017 14:20:23 +0000
(14:20 +0000)
committer
helg
<helg@openbsd.org>
Mon, 18 Dec 2017 14:20:23 +0000
(14:20 +0000)
opposite of fuse_setup(3).
ok mpi@
lib/libfuse/fuse.c
patch
|
blob
|
history
diff --git
a/lib/libfuse/fuse.c
b/lib/libfuse/fuse.c
index
cd7773b
..
73426e5
100644
(file)
--- a/
lib/libfuse/fuse.c
+++ b/
lib/libfuse/fuse.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: fuse.c,v 1.4
2 2017/12/18 11:41:41
helg Exp $ */
+/* $OpenBSD: fuse.c,v 1.4
3 2017/12/18 14:20:23
helg Exp $ */
/*
* Copyright (c) 2013 Sylvestre Gallon <ccna.syl@gmail.com>
*
@@
-611,6
+611,7
@@
fuse_teardown(struct fuse *fuse, char *mp)
if (fuse == NULL || mp == NULL)
return;
+ fuse_remove_signal_handlers(fuse_get_session(fuse));
fuse_unmount(mp, fuse->fc);
fuse_destroy(fuse);
}