aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-11-25 20:45:38 +0000
committerbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-11-25 20:45:38 +0000
commit2cea1c264c8802098fbd0363e6c3aec1cc4e3836 (patch)
treec4ccaa4b923b57f508e5b156ee0cf5781e18504c /shell
parent217c272c88621d3682f1cf4a05f40aa6339ab2bc (diff)
downloadbusybox-w32-2cea1c264c8802098fbd0363e6c3aec1cc4e3836.tar.gz
busybox-w32-2cea1c264c8802098fbd0363e6c3aec1cc4e3836.tar.bz2
busybox-w32-2cea1c264c8802098fbd0363e6c3aec1cc4e3836.zip
Fix for "Broken pipe" issue, vodz last_patch116_3
git-svn-id: svn://busybox.net/trunk/busybox@8003 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 62d596974..fe99b02cb 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -6690,7 +6690,7 @@ sprint_status(char *s, int status, int sigonly)
6690#endif 6690#endif
6691 st = WTERMSIG(status); 6691 st = WTERMSIG(status);
6692 if (sigonly) { 6692 if (sigonly) {
6693 if (st == SIGINT) 6693 if (st == SIGINT || st == SIGPIPE)
6694 goto out; 6694 goto out;
6695#if JOBS 6695#if JOBS
6696 if (WIFSTOPPED(status)) 6696 if (WIFSTOPPED(status))