Diff between fb673cb904bf04ec0d491b9dcb46d8430aac7444 and 9472de30872a1672a22023e57991d1f8a343c59e

Changed Files

File Additions Deletions Status
obexd/src/main.c +0 -4 modified

Full Patch

diff --git a/obexd/src/main.c b/obexd/src/main.c
index 09a01b7..61a06b2 100644
--- a/obexd/src/main.c
+++ b/obexd/src/main.c
@@ -86,9 +86,6 @@ static gboolean signal_handler(GIOChannel *channel, GIOCondition cond,
 	case SIGUSR2:
 		__obex_log_enable_debug();
 		break;
-	case SIGPIPE:
-		/* ignore */
-		break;
 	}
 
 	return TRUE;
@@ -105,7 +102,6 @@ static guint setup_signalfd(void)
 	sigaddset(&mask, SIGINT);
 	sigaddset(&mask, SIGTERM);
 	sigaddset(&mask, SIGUSR2);
-	sigaddset(&mask, SIGPIPE);
 
 	if (sigprocmask(SIG_BLOCK, &mask, NULL) < 0) {
 		perror("Failed to set signal mask");