aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2017-03-27 20:32:24 +0300
committerArnold D. Robbins <arnold@skeeve.com>2017-03-27 20:32:24 +0300
commit70f73831de55d63263839d5fa6ac44dbc2c38491 (patch)
treec9cc008a1ca0747ce4e679e21f5f46b1d3bd1af7 /main.c
parentc5d46e712f917385b2291c6acb3fc323b4b8d16c (diff)
parent5b7042ea0a68d41c4fbd0d6228f77975ebf8c38b (diff)
downloadegawk-70f73831de55d63263839d5fa6ac44dbc2c38491.tar.gz
egawk-70f73831de55d63263839d5fa6ac44dbc2c38491.tar.bz2
egawk-70f73831de55d63263839d5fa6ac44dbc2c38491.zip
Merge branch 'master' into feature/api-parser
Diffstat (limited to 'main.c')
-rw-r--r--main.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/main.c b/main.c
index f348171c..9c404b21 100644
--- a/main.c
+++ b/main.c
@@ -633,7 +633,10 @@ By default it reads standard input and writes standard output.\n\n"), fp);
warning(_("error writing standard output (%s)"), strerror(errno));
else if (fp == stderr)
warning(_("error writing standard error (%s)"), strerror(errno));
- }
+ } else if (errno == SIGPIPE)
+ die_via_sigpipe();
+
+ // some other problem than SIGPIPE
exit(EXIT_FAILURE);
}