diff options
author | Nikias Bassen | 2010-04-07 17:41:27 +0200 |
---|---|---|
committer | Hector Martin | 2010-04-08 15:19:18 +0200 |
commit | 2f5316f8ae27736057eef34a72e4e087c0a24470 (patch) | |
tree | 2fca3a59293ebae34002e3edec193f0b9e417fe3 | |
parent | e5621ca5ccd6ed1c7f03611538227350eb267dac (diff) | |
download | usbmuxd-2f5316f8ae27736057eef34a72e4e087c0a24470.tar.gz usbmuxd-2f5316f8ae27736057eef34a72e4e087c0a24470.tar.bz2 |
Ignore SIGPIPE, otherwise usbmuxd might shut down on connection abort
-rw-r--r-- | daemon/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/daemon/main.c b/daemon/main.c index d8ae703..789a202 100644 --- a/daemon/main.c +++ b/daemon/main.c @@ -440,6 +440,7 @@ int main(int argc, char *argv[]) should_discover = 0; set_signal_handlers(); + signal(SIGPIPE, SIG_IGN); res = lfd = open(lockfile, O_WRONLY|O_CREAT, 0644); if(res == -1) { |