python: fix disabling the SSL module
[buildroot-gz.git] / package / sysklogd / 0001-Replace-deprecated-union-wait-with-int.patch
blobd3fc0dc188afb4c9a5a58479d774cf89efa1db6c
1 From 76685540a7882926c54bc0d1a8945b7a6abffe40 Mon Sep 17 00:00:00 2001
2 From: Ryan Coe <bluemrp9@gmail.com>
3 Date: Fri, 7 Oct 2016 19:42:40 -0700
4 Subject: [PATCH] Replace deprecated union wait with int
6 This is needed for compatibility with glibc >= 2.24.
8 Signed-off-by: Ryan Coe <bluemrp9@gmail.com>
9 ---
10 syslogd.c | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
13 diff --git a/syslogd.c b/syslogd.c
14 index ea73ea5..ace96c8 100644
15 --- a/syslogd.c
16 +++ b/syslogd.c
17 @@ -2094,7 +2094,7 @@ void reapchild()
18 (void) signal(SIGCHLD, reapchild); /* reset signal handler -ASP */
19 wait ((int *)0);
20 #else
21 - union wait status;
22 + int status;
24 while (wait3(&status, WNOHANG, (struct rusage *) NULL) > 0)
26 --
27 2.7.4