diff options
author | Denys Vlasenko | 2011-02-14 17:17:10 +0100 |
---|---|---|
committer | Denys Vlasenko | 2011-02-14 17:17:10 +0100 |
commit | 7c6f2468ccc849c9f8401ee97a3d894d8f483773 (patch) | |
tree | 39c358e7bc5758c691516146e4795353e126e1e8 /shell/ash.c | |
parent | b9348440b0491b479457b304754bca4840286f74 (diff) | |
download | busybox-7c6f2468ccc849c9f8401ee97a3d894d8f483773.zip busybox-7c6f2468ccc849c9f8401ee97a3d894d8f483773.tar.gz |
hush: do not print killer signal's name for SIGPIPE
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 1 |
1 files changed, 1 insertions, 0 deletions
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)"); |