Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@nbd.name>2023-11-27 20:29:43 +0300
committerFelix Fietkau <nbd@nbd.name>2023-11-27 20:30:01 +0300
commit8a5a4319a85cdfe54998c8f15bb29cd81b2b2c01 (patch)
tree982efdc3b94e69b47da826b11d7a581cab67062f
parentf7d1569113110ea8df071d2ea64fd17aaf5b42c9 (diff)
uloop: fix typo in signal handling rework
Fixes procd issues Signed-off-by: Felix Fietkau <nbd@nbd.name>
-rw-r--r--uloop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/uloop.c b/uloop.c
index 63428db..ebd7839 100644
--- a/uloop.c
+++ b/uloop.c
@@ -466,7 +466,7 @@ static void uloop_signal_wake(int signo)
{
uint8_t sigbyte = signo;
- if (signo == ECHILD)
+ if (signo == SIGCHLD)
do_sigchld = true;
do {