summary refs log tree commit diff
path: root/bounce.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-11-06 17:04:20 -0500
committerJune McEnroe <june@causal.agency>2019-11-06 17:04:20 -0500
commitc7223d7e0cd74562255eb80d02d659e6901d43b9 (patch)
tree49297092a9978385e79fb492e5dd5ab511b650cb /bounce.c
parentDefine one CERTBOT_PATH rather than two format strings (diff)
downloadpounce-c7223d7e0cd74562255eb80d02d659e6901d43b9.tar.gz
pounce-c7223d7e0cd74562255eb80d02d659e6901d43b9.zip
Declare more missing functions and deal with lack of SO_NOSIGPIPE
Diffstat (limited to 'bounce.c')
-rw-r--r--bounce.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/bounce.c b/bounce.c
index 93afbb4..1f29f8c 100644
--- a/bounce.c
+++ b/bounce.c
@@ -372,6 +372,7 @@ int main(int argc, char *argv[]) {
 
 	signal(SIGINT, signalHandler);
 	signal(SIGTERM, signalHandler);
+	signal(SIGPIPE, SIG_IGN);
 	signal(SIGINFO, signalHandler);
 	signal(SIGUSR1, signalHandler);