drop reap_child_procs.patch (merged upstream)

This commit is contained in:
Leo Antunes
2021-10-18 23:15:31 +02:00
parent 75a1e52e91
commit 15d6b105fc
2 changed files with 0 additions and 17 deletions

View File

@@ -1,16 +0,0 @@
Index: repo/src/knockd.c
===================================================================
--- repo.orig/src/knockd.c 2016-09-28 21:42:58.417421069 +0200
+++ repo/src/knockd.c 2016-09-28 21:42:58.413421096 +0200
@@ -366,8 +366,9 @@
void child_exit(int signum)
{
- /* child wants to exit, let em die */
- wait(NULL);
+ int status;
+
+ while ( waitpid( (pid_t)-1, &status, WNOHANG ) > 0 ) continue;
return;
}

View File

@@ -1,3 +1,2 @@
default_config.patch
reap_child_procs.patch
syslog_facility_daemon.patch