commit | 4ddddd180eaa7a1f4b2071c37425d99c3ef8040d | [log] [tgz] |
---|---|---|
author | Glenn L McGrath <bug1@ihug.co.nz> | Tue Nov 25 20:45:38 2003 +0000 |
committer | Glenn L McGrath <bug1@ihug.co.nz> | Tue Nov 25 20:45:38 2003 +0000 |
tree | c4ccaa4b923b57f508e5b156ee0cf5781e18504c | |
parent | c3498f678aaae3dc30b1976af498f9e1b0309b5b [diff] |
Fix for "Broken pipe" issue, vodz last_patch116_3
diff --git a/shell/ash.c b/shell/ash.c index 62d5969..fe99b02 100644 --- a/shell/ash.c +++ b/shell/ash.c
@@ -6690,7 +6690,7 @@ #endif st = WTERMSIG(status); if (sigonly) { - if (st == SIGINT) + if (st == SIGINT || st == SIGPIPE) goto out; #if JOBS if (WIFSTOPPED(status))