diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2017-12-01 17:26:53 +0100 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-12-01 17:26:53 +0100 |
commit | 3ce3c4fd596debefbad77328a9b62a39eccf753c (patch) | |
tree | 8ea8842d946335dbd124e71336a11b928481c544 /unmaintained/xnbd/remove-sys_siglist.patch | |
parent | 62b8ba5f8fe6d62d56b2d078b4f12f72830ee4af (diff) | |
download | aports-3ce3c4fd596debefbad77328a9b62a39eccf753c.tar.bz2 aports-3ce3c4fd596debefbad77328a9b62a39eccf753c.tar.xz |
unmaintained/*: purge aports not touched since v3.5.0
We agreed with ncopa on #alpine-devel (2017-12-01 16:20 UTC) to
periodically purge aports in unmaintained that haven't been touched
in last 1 year (2 releases).
Diffstat (limited to 'unmaintained/xnbd/remove-sys_siglist.patch')
-rw-r--r-- | unmaintained/xnbd/remove-sys_siglist.patch | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/unmaintained/xnbd/remove-sys_siglist.patch b/unmaintained/xnbd/remove-sys_siglist.patch deleted file mode 100644 index 8d9c3618f8..0000000000 --- a/unmaintained/xnbd/remove-sys_siglist.patch +++ /dev/null @@ -1,35 +0,0 @@ ---- ./xnbd_server.c.orig -+++ ./xnbd_server.c -@@ -181,7 +181,7 @@ - - static void signal_handler(int signum) - { -- dbg("sig: signal catched, code %d (%s)", signum, sys_siglist[signum]); -+ dbg("sig: signal catched, code %d (%s)", signum, strsignal(signum)); - - if (signum == SIGCHLD) - got_sigchld = 1; -@@ -495,7 +495,7 @@ - info(" with exit status=%d", WEXITSTATUS(status)); - - if (WIFSIGNALED(status)) -- info(" killed by signal=%d(%s)", WTERMSIG(status), sys_siglist[WTERMSIG(status)]); -+ info(" killed by signal=%d(%s)", WTERMSIG(status), strsignal(WTERMSIG(status))); - } - - const bool single_client_at_most = (connect_fd != -1); ---- ./xnbd_watchdog.c.orig -+++ ./xnbd_watchdog.c -@@ -26,10 +26,10 @@ - - static void nbddev_watchdog_sigalarm_handler(int signum) - { -- info("sig: signal catched, code %d (%s)", signum, sys_siglist[signum]); -+ info("sig: signal catched, code %d (%s)", signum, strsignal(signum)); - - if (signum != SIGALRM) -- warn("unexpected signal, code %d (%s)", signum, sys_siglist[signum]); -+ warn("unexpected signal, code %d (%s)", signum, strsignal(signum)); - } - - /* string is dummy */ |