summaryrefslogtreecommitdiffstats
path: root/ulogd/include/ulogd
diff options
context:
space:
mode:
authorlaforge <laforge>2003-01-13 13:34:55 +0000
committerlaforge <laforge>2003-01-13 13:34:55 +0000
commit5179dbbb361aa74859f11258a00b68d2e552ffab (patch)
treef6048fb9a1881123c1eb12c2f4945fceba21e85e /ulogd/include/ulogd
parent1b02af230c19b7a3520a4789ab63bb80f2bf2146 (diff)
signal handler has no return value
Diffstat (limited to 'ulogd/include/ulogd')
-rw-r--r--ulogd/include/ulogd/ulogd.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ulogd/include/ulogd/ulogd.h b/ulogd/include/ulogd/ulogd.h
index 2aa4aca..8ad1692 100644
--- a/ulogd/include/ulogd/ulogd.h
+++ b/ulogd/include/ulogd/ulogd.h
@@ -1,6 +1,6 @@
#ifndef _ULOGD_H
#define _ULOGD_H
-/* ulogd, Version $Revision: 1.15 $
+/* ulogd, Version $Revision: 1.16 $
*
* userspace logging daemon for netfilter ULOG target
* of the linux 2.4 netfilter subsystem.
@@ -9,7 +9,7 @@
*
* this code is released under the terms of GNU GPL
*
- * $Id: ulogd.h,v 1.15 2001/06/17 20:08:30 laforge Exp $
+ * $Id: ulogd.h,v 1.16 2002/06/13 12:55:59 laforge Exp $
*/
#include <libipulog/libipulog.h>
@@ -110,7 +110,7 @@ typedef struct ulog_output {
/* callback function */
int (*output)(ulog_iret_t *ret);
/* callback function for signals (SIGHUP, ..) */
- int (*signal)(int signal);
+ void (*signal)(int signal);
} ulog_output_t;
/* entries of the key hash */