You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
284 B

  1. --- a/src/usbipd.c
  2. +++ b/src/usbipd.c
  3. @@ -453,7 +453,7 @@ static void set_signal(void)
  4. sigaction(SIGTERM, &act, NULL);
  5. sigaction(SIGINT, &act, NULL);
  6. act.sa_handler = SIG_IGN;
  7. - sigaction(SIGCLD, &act, NULL);
  8. + sigaction(SIGCHLD, &act, NULL);
  9. }
  10. static const char *pid_file;