mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-27 01:11:33 +02:00
14 lines
355 B
Diff
14 lines
355 B
Diff
diff --git a/src/usbipd.c b/src/usbipd.c
|
|
index 7980f8b..3ccf94f 100644
|
|
--- a/src/usbipd.c
|
|
+++ b/src/usbipd.c
|
|
@@ -451,7 +451,7 @@ static void set_signal(void)
|
|
sigaction(SIGTERM, &act, NULL);
|
|
sigaction(SIGINT, &act, NULL);
|
|
act.sa_handler = SIG_IGN;
|
|
- sigaction(SIGCLD, &act, NULL);
|
|
+ sigaction(SIGCHLD, &act, NULL);
|
|
}
|
|
|
|
static const char *pid_file;
|