From 3f3f2fdd034dd77d718a212551b3208039961e8a Mon Sep 17 00:00:00 2001 From: Francesco Colista Date: Wed, 9 Jul 2014 10:19:27 +0000 Subject: testing/usbip-utils: fixes #690 --- testing/usbip-utils/sigcld.patch | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 testing/usbip-utils/sigcld.patch (limited to 'testing/usbip-utils/sigcld.patch') diff --git a/testing/usbip-utils/sigcld.patch b/testing/usbip-utils/sigcld.patch new file mode 100644 index 0000000000..8616faec35 --- /dev/null +++ b/testing/usbip-utils/sigcld.patch @@ -0,0 +1,13 @@ +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; -- cgit v1.2.3