Fix a "broken pipe" problem. vodz, last_patch_116-2
diff --git a/shell/ash.c b/shell/ash.c
index deffe28c..62d5969 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -6690,10 +6690,6 @@
 #endif
 			st = WTERMSIG(status);
 		if (sigonly) {
-			if(st == SIGPIPE) {
-				col = fmtstr(s, 16, "Broken pipe");
-				goto out;
-			}
 			if (st == SIGINT)
 				goto out;
 #if JOBS
@@ -6702,7 +6698,7 @@
 #endif
 		}
 		st &= 0x7f;
-		col = fmtstr(s, 32, u_signal_names(NULL, &st, 0));
+		col = fmtstr(s, 32, strsignal(st));
 		if (WCOREDUMP(status)) {
 			col += fmtstr(s + col, 16, " (core dumped)");
 		}