summaryrefslogtreecommitdiffstats
path: root/kernel/ipt_ULOG.c
diff options
context:
space:
mode:
authorlaforge <laforge>2002-08-29 10:51:35 +0000
committerlaforge <laforge>2002-08-29 10:51:35 +0000
commit7757dbba0f25f76437a0e46fafc09243af5193b6 (patch)
tree5349dc8c37366a758f800fa19d83bd3e32a4f8d4 /kernel/ipt_ULOG.c
parent028b762fe259ad24062dcf6438a70afb94bafc4e (diff)
use NULL instead of 0, typedefs are evil(TM)
Diffstat (limited to 'kernel/ipt_ULOG.c')
-rw-r--r--kernel/ipt_ULOG.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/ipt_ULOG.c b/kernel/ipt_ULOG.c
index e223806..9f04a31 100644
--- a/kernel/ipt_ULOG.c
+++ b/kernel/ipt_ULOG.c
@@ -30,7 +30,7 @@
* Specify, after how many clock ticks (intel: 100 per second) the queue
* should be flushed even if it is not full yet.
*
- * $Id: ipt_ULOG.c,v 1.18 2002/04/16 07:33:00 laforge Exp $
+ * $Id: ipt_ULOG.c,v 1.19 2002/07/07 11:15:31 laforge Exp $
*/
#include <linux/module.h>
@@ -321,7 +321,7 @@ static int __init init(void)
ulog_buffers[i].timer.data = i;
}
- nflognl = netlink_kernel_create(NETLINK_NFLOG, 0);
+ nflognl = netlink_kernel_create(NETLINK_NFLOG, NULL);
if (!nflognl)
return -ENOMEM;
@@ -335,7 +335,7 @@ static int __init init(void)
static void __exit fini(void)
{
- struct ulog_buff_t *ub;
+ ulog_buff_t *ub;
int i;
DEBUGP("ipt_ULOG: cleanup_module\n");