aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2007-02-12 11:11:24 -0800
committerDavid S. Miller <davem@davemloft.net>2007-02-12 11:11:24 -0800
commit9dc6aa5fcfc104becd86c89c5e7ec90e840e0163 (patch)
tree4e6d22cd7fdcae42cbccd7ef71b86958ac5ac736 /include
parent[NETFILTER]: nf_log: use rcu_assign_pointer for RCU protected pointer (diff)
downloadlinux-dev-9dc6aa5fcfc104becd86c89c5e7ec90e840e0163.tar.xz
linux-dev-9dc6aa5fcfc104becd86c89c5e7ec90e840e0163.zip
[NETFILTER]: nf_log: make nf_log_unregister_pf return void
Since the only user of nf_log_unregister_pf (nfnetlink_log) doesn't check the return value, change it to void and bail out silently when a non-existant address family is supplied. Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r--include/linux/netfilter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netfilter.h b/include/linux/netfilter.h
index d4c4c5120bc0..18a67908a330 100644
--- a/include/linux/netfilter.h
+++ b/include/linux/netfilter.h
@@ -172,7 +172,7 @@ struct nf_logger {
/* Function to register/unregister log function. */
int nf_log_register(int pf, struct nf_logger *logger);
-int nf_log_unregister_pf(int pf);
+void nf_log_unregister_pf(int pf);
void nf_log_unregister_logger(struct nf_logger *logger);
/* Calls the registered backend logging function */