summaryrefslogtreecommitdiffstats
path: root/ulogd.c
diff options
context:
space:
mode:
authorlaforge <laforge>2001-06-17 20:08:30 +0000
committerlaforge <laforge>2001-06-17 20:08:30 +0000
commitc2ce1ede38f30d6ae2c9f646ea8b6225bdf9cd13 (patch)
tree6b1202be86120fa3fd46ec09dd07893d433555d3 /ulogd.c
parentefea0aa10d862a1a0e36043cfd6f712b8cd326aa (diff)
make it compile again (small bugfixes after sighandler checkin)
Diffstat (limited to 'ulogd.c')
-rw-r--r--ulogd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ulogd.c b/ulogd.c
index a13f5a0..a62331a 100644
--- a/ulogd.c
+++ b/ulogd.c
@@ -1,6 +1,6 @@
-/* ulogd, Version $Revision: 1.16 $
+/* ulogd, Version $Revision: 1.17 $
*
- * $Id: ulogd.c,v 1.16 2001/05/26 23:19:28 laforge Exp $
+ * $Id: ulogd.c,v 1.17 2001/06/14 19:25:25 laforge Exp $
*
* userspace logging daemon for the netfilter ULOG target
* of the linux 2.4 netfilter subsystem.
@@ -521,8 +521,8 @@ static void sighup_handler(int signal)
ulogd_log(ULOGD_NOTICE, "sighup received, calling plugin handlers\n");
for (p = ulogd_outputs; p; p = p->next) {
- if (p->sighup)
- (*p->sighup)(SIGHUP);
+ if (p->signal)
+ (*p->signal)(SIGHUP);
}
}