From 7c6f2468ccc849c9f8401ee97a3d894d8f483773 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Mon, 14 Feb 2011 17:17:10 +0100 Subject: hush: do not print killer signal's name for SIGPIPE Signed-off-by: Denys Vlasenko --- shell/ash.c | 1 + 1 file changed, 1 insertion(+) (limited to 'shell/ash.c') diff --git a/shell/ash.c b/shell/ash.c index aaf21cd..cccd6dd 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -3892,6 +3892,7 @@ sprint_status(char *s, int status, int sigonly) #endif } st &= 0x7f; +//TODO: use bbox's get_signame? strsignal adds ~600 bytes to text+rodata col = fmtstr(s, 32, strsignal(st)); if (WCOREDUMP(status)) { col += fmtstr(s + col, 16, " (core dumped)"); -- cgit v1.1