Commit 62243927 authored by Harald Welte's avatar Harald Welte Committed by David S. Miller

[NETFILTER]: Fix compilation when no PROC_FS enabled

Signed-off-by: default avatarHarald Welte <laforge@netfilter.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent e41aac41
...@@ -167,12 +167,12 @@ int __init netfilter_log_init(void) ...@@ -167,12 +167,12 @@ int __init netfilter_log_init(void)
{ {
#ifdef CONFIG_PROC_FS #ifdef CONFIG_PROC_FS
struct proc_dir_entry *pde; struct proc_dir_entry *pde;
pde = create_proc_entry("nf_log", S_IRUGO, proc_net_netfilter); pde = create_proc_entry("nf_log", S_IRUGO, proc_net_netfilter);
#endif
if (!pde) if (!pde)
return -1; return -1;
pde->proc_fops = &nflog_file_ops; pde->proc_fops = &nflog_file_ops;
#endif
return 0; return 0;
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment