Skip to content

Commit

Permalink
Fix build on recent glibc
Browse files Browse the repository at this point in the history
Issue explanation at greenbone/gvmd#1279,
based off fix at greenbone/gvmd#1280.
  • Loading branch information
nyanpasu64 committed May 21, 2021
1 parent 2171981 commit 9e2a615
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/debugme.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ EXPORT int debugme_install_sighandlers(unsigned dbg_flags_, const char *dbg_opts
size_t i;
for(i = 0; i < ARRAY_SIZE(bad_signals); ++i) {
int sig = bad_signals[i];
const char *signame = sys_siglist[sig];
const char *signame = strsignal(sig);
if(debug) {
fprintf(stderr, "debugme: setting signal handler for signal %d (%s)\n", sig, signame);
}
Expand Down

0 comments on commit 9e2a615

Please sign in to comment.