diff --git a/src/common/util.h b/src/common/util.h index 48bdbbc28..0f0308b1b 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -146,9 +146,10 @@ namespace tools } return r; #else - /* Only blocks SIGINT and SIGTERM */ + /* Only blocks SIGINT, SIGTERM and SIGPIPE */ signal(SIGINT, posix_handler); signal(SIGTERM, posix_handler); + signal(SIGPIPE, SIG_IGN); m_handler = t; return true; #endif