diff options
author | June McEnroe <june@causal.agency> | 2019-11-06 17:04:20 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-11-06 17:04:20 -0500 |
commit | c7223d7e0cd74562255eb80d02d659e6901d43b9 (patch) | |
tree | 49297092a9978385e79fb492e5dd5ab511b650cb /bounce.c | |
parent | Define one CERTBOT_PATH rather than two format strings (diff) | |
download | pounce-c7223d7e0cd74562255eb80d02d659e6901d43b9.tar.gz pounce-c7223d7e0cd74562255eb80d02d659e6901d43b9.zip |
Declare more missing functions and deal with lack of SO_NOSIGPIPE
Diffstat (limited to '')
-rw-r--r-- | bounce.c | 1 |
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); |