projects
/
tinc
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
9b2eaeb
)
Clean up child processes from proxy type exec.
author
Guus Sliepen
<guus@tinc-vpn.org>
Fri, 18 Oct 2013 14:58:47 +0000
(16:58 +0200)
committer
Guus Sliepen
<guus@tinc-vpn.org>
Fri, 18 Oct 2013 14:58:47 +0000
(16:58 +0200)
src/net.c
patch
|
blob
|
history
diff --git
a/src/net.c
b/src/net.c
index
286f157
..
baf576d
100644
(file)
--- a/
src/net.c
+++ b/
src/net.c
@@
-129,6
+129,12
@@
void terminate_connection(connection_t *c, bool report) {
if(outgoing)
do_outgoing_connection(outgoing);
+
+#ifndef HAVE_MINGW
+ /* Clean up dead proxy processes */
+
+ while(waitpid(-1, NULL, WNOHANG) > 0);
+#endif
}
/*