X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;ds=sidebyside;f=src%2Fnet.c;h=baf576d5d854c77f9a2af1b0411bf0aa834dca18;hb=7da999f4aee4e9c8b192769fddbe1c61cd31d7d0;hp=bf6cfcf177d58a18572a4947e62a45e11f73c617;hpb=76c90e1639ee900fca4fc858260f0078ba32b9b1;p=tinc diff --git a/src/net.c b/src/net.c index bf6cfcf1..baf576d5 100644 --- a/src/net.c +++ b/src/net.c @@ -32,7 +32,6 @@ #include "names.h" #include "net.h" #include "netutl.h" -#include "process.h" #include "protocol.h" #include "subnet.h" #include "xalloc.h" @@ -130,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 } /*