From 2c8a8ace280de8e91d998ac5c7507f456132361b Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sat, 16 Jan 2016 23:25:38 +0100 Subject: [PATCH] uclient-fetch: ignore SIGPIPE Signed-off-by: Felix Fietkau --- uclient-fetch.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/uclient-fetch.c b/uclient-fetch.c index c64afb7..c2b7e69 100644 --- a/uclient-fetch.c +++ b/uclient-fetch.c @@ -26,6 +26,7 @@ #include #include #include +#include #include @@ -476,6 +477,7 @@ int main(int argc, char **argv) int i, ch; int rc; + signal(SIGPIPE, SIG_IGN); init_ustream_ssl(); while ((ch = getopt_long(argc, argv, "cO:qsU:Y:", longopts, &longopt_idx)) != -1) { -- 2.30.2