aboutsummaryrefslogtreecommitdiffstats
path: root/net/netfilter/nf_log.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@netfilter.org>2005-08-11 15:30:45 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2005-08-29 15:56:54 -0700
commit622439270c74f3ad4f69d1417aca4bb3b79514f4 (patch)
treefde205886d09db76b0042092be0be7a509791349 /net/netfilter/nf_log.c
parent[TCPDIAG]: Introduce CONFIG_IP_TCPDIAG_DCCP (diff)
downloadlinux-dev-622439270c74f3ad4f69d1417aca4bb3b79514f4.tar.xz
linux-dev-622439270c74f3ad4f69d1417aca4bb3b79514f4.zip
[NETFILTER]: Fix compilation when no PROC_FS enabled
Signed-off-by: Harald Welte <laforge@netfilter.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--net/netfilter/nf_log.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/netfilter/nf_log.c b/net/netfilter/nf_log.c
index 573e76a770d9..3e76bd0824a2 100644
--- a/net/netfilter/nf_log.c
+++ b/net/netfilter/nf_log.c
@@ -167,12 +167,12 @@ int __init netfilter_log_init(void)
{
#ifdef CONFIG_PROC_FS
struct proc_dir_entry *pde;
+
pde = create_proc_entry("nf_log", S_IRUGO, proc_net_netfilter);
-#endif
if (!pde)
return -1;
pde->proc_fops = &nflog_file_ops;
-
+#endif
return 0;
}