summaryrefslogtreecommitdiffstats
path: root/kernel/ipt_ULOG.c
diff options
context:
space:
mode:
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 305b089..d1b913f 100644
--- a/kernel/ipt_ULOG.c
+++ b/kernel/ipt_ULOG.c
@@ -5,7 +5,7 @@
*
* Released under the terms of the GPL
*
- * $Id$
+ * $Id: ipt_ULOG.c,v 1.3 2000/07/31 11:22:25 laforge Exp laforge $
*/
#include <linux/module.h>
@@ -147,7 +147,7 @@ static int __init init(void)
return -ENOMEM;
if (ipt_register_target(&ipt_ulog_reg) != 0) {
- sock_release((struct socket *) nflognl->socket);
+ sock_release(nflognl->socket);
return -EINVAL;
}
@@ -159,7 +159,7 @@ static void __exit fini(void)
DEBUGP("ipt_ULOG: cleanup_module\n");
ipt_unregister_target(&ipt_ulog_reg);
- sock_release((struct socket *) nflognl->socket);
+ sock_release(nflognl->socket);
}
module_init(init);