29 lines
716 B
Diff
29 lines
716 B
Diff
|
From 76685540a7882926c54bc0d1a8945b7a6abffe40 Mon Sep 17 00:00:00 2001
|
||
|
From: Ryan Coe <bluemrp9@gmail.com>
|
||
|
Date: Fri, 7 Oct 2016 19:42:40 -0700
|
||
|
Subject: [PATCH] Replace deprecated union wait with int
|
||
|
|
||
|
This is needed for compatibility with glibc >= 2.24.
|
||
|
|
||
|
Signed-off-by: Ryan Coe <bluemrp9@gmail.com>
|
||
|
---
|
||
|
syslogd.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/syslogd.c b/syslogd.c
|
||
|
index ea73ea5..ace96c8 100644
|
||
|
--- a/syslogd.c
|
||
|
+++ b/syslogd.c
|
||
|
@@ -2094,7 +2094,7 @@ void reapchild()
|
||
|
(void) signal(SIGCHLD, reapchild); /* reset signal handler -ASP */
|
||
|
wait ((int *)0);
|
||
|
#else
|
||
|
- union wait status;
|
||
|
+ int status;
|
||
|
|
||
|
while (wait3(&status, WNOHANG, (struct rusage *) NULL) > 0)
|
||
|
;
|
||
|
--
|
||
|
2.7.4
|
||
|
|