diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-09-14 07:24:01 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-09-14 07:24:56 +0000 |
commit | 56ee3af825be8baa95f8344f1805ac5cae90b006 (patch) | |
tree | 04210f296911532161205df5795979f518d43178 /testing/kbuild/sys_siglist.patch | |
parent | fa0b37908ede74b37439becd35227d5107958137 (diff) | |
download | aports-56ee3af825be8baa95f8344f1805ac5cae90b006.tar.bz2 aports-56ee3af825be8baa95f8344f1805ac5cae90b006.tar.xz |
testing/kbuild: upgrade to 0.1.9998_pre20120806
Diffstat (limited to 'testing/kbuild/sys_siglist.patch')
-rw-r--r-- | testing/kbuild/sys_siglist.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/testing/kbuild/sys_siglist.patch b/testing/kbuild/sys_siglist.patch index 883b2ef3ad..140b8a0169 100644 --- a/testing/kbuild/sys_siglist.patch +++ b/testing/kbuild/sys_siglist.patch @@ -13,3 +13,16 @@ index 146326a..cbf0c3e 100644 else fmtstr(s + col, 16, "Signal %d", st); if (WCOREDUMP(ps->status)) { +--- ./src/kash/jobs.c.orig ++++ ./src/kash/jobs.c +@@ -396,8 +396,8 @@ + #endif + st = WTERMSIG(ps->status); + st &= 0x7f; +- if (st < NSIG && sys_siglist[st]) +- scopyn(sys_siglist[st], s + col, 32); ++ if (st < NSIG && strsignal(st)) ++ scopyn(strsignal(st), s + col, 32); + else + fmtstr(s + col, 16, "Signal %d", st); + if (WCOREDUMP(ps->status)) { |