forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
net-analyzer/greenbone-security-assistant: add glibc patch in 9.0.1
Bug: https://bugs.gentoo.org/751592 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Jonas Licht <[email protected]> Signed-off-by: Joonas Niilola <[email protected]>
- Loading branch information
Showing
2 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
...greenbone-security-assistant/files/greenbone-security-assistant-9.0.1-glibc_siglist.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#------------------------------------------------------------------- | ||
# compatibility with glibc 2.32 version #751592 | ||
#------------------------------------------------------------------- | ||
--- ./gsad/src/gsad.c 2020-05-13 09:22:13.000000000 +0200 | ||
+++ ./gsad/src/gsad.c 2020-10-28 13:07:25.127222254 +0100 | ||
@@ -3318,7 +3318,7 @@ | ||
{ | ||
if (termination_signal) | ||
{ | ||
- g_debug ("Received %s signal.\n", sys_siglist[termination_signal]); | ||
+ g_debug ("Received %s signal.\n", strsignal(termination_signal)); | ||
gsad_cleanup (); | ||
/* Raise signal again, to exit with the correct return value. */ | ||
signal (termination_signal, SIG_DFL); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters