File: fix_siglist.patch

package info (click to toggle)
xgammon 0.99.1128-8
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 544 kB
  • sloc: ansic: 5,042; lex: 589; makefile: 14
file content (19 lines) | stat: -rw-r--r-- 616 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Description: Use strsignal
 sys_siglist has been deprecated as announed in:
 https://sourceware.org/pipermail/libc-announce/2020/000029.html

Author: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
Bug-Debian: https://bugs.debian.org/997259
---

--- xgammon-0.99.1128.orig/src/save.c
+++ xgammon-0.99.1128/src/save.c
@@ -142,7 +142,7 @@ void sig_save(int n)
 	fclose(save_file);
 
 #ifndef AIX
-	fprintf (stderr, "xgammon: %s.  Sorry and bye!\n", sys_siglist[n]);
+	fprintf (stderr, "xgammon: %s.  Sorry and bye!\n", strsignal(n));
 #else
 	fprintf (stderr, "xgammon: Caught signal %d.   Sorry and bye!\n", n);
 #endif