blob: 1d0c3423e8acd3d2a657c38edbf971437617f3b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
https://bugs.gentoo.org/945297
fix signature of signal
--- a/include/firewalk.h
+++ b/include/firewalk.h
@@ -248,7 +248,7 @@
int /* 1 on success -1 or failure */
catch_sig(
int, /* signal to catch */
- void (*)() /* new signal handler */
+ void (*)(int) /* new signal handler */
);
/* handles SIGINT from user */
--- a/src/signal.c
+++ b/src/signal.c
@@ -40,7 +40,7 @@
extern int loop;
int
-catch_sig(int signo, void (*handler)())
+catch_sig(int signo, void (*handler)(int))
{
struct sigaction action;
https://bugs.gentoo.org/731202
patch out unneedeed strip - portage does it instead, and right.
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -25,7 +25,6 @@
all:
cp firewalk $(top_srcdir)
- strip $(top_srcdir)/firewalk
clean:
rm -f $(top_srcdir)/firewalk
|