diff options
author | Patrick McHardy <kaber@trash.net> | 2006-11-29 02:35:42 +0100 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-02 21:31:34 -0800 |
commit | 76592584be7828cd314bc8d5dc7773ff1692fb99 (patch) | |
tree | a0849035a07a9128ebccb3aa8aea17ba9e237d13 /net/ipv6 | |
parent | 65195686ff2f088a73c1764f4d30be5c7e0eb089 (diff) | |
download | op-kernel-dev-76592584be7828cd314bc8d5dc7773ff1692fb99.zip op-kernel-dev-76592584be7828cd314bc8d5dc7773ff1692fb99.tar.gz |
[NETFILTER]: Fix PROC_FS=n warnings
Fix some unused function/variable warnings.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/netfilter/ip6_queue.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/ipv6/netfilter/ip6_queue.c b/net/ipv6/netfilter/ip6_queue.c index 21908c9..d4d9f18 100644 --- a/net/ipv6/netfilter/ip6_queue.c +++ b/net/ipv6/netfilter/ip6_queue.c @@ -620,6 +620,7 @@ static ctl_table ipq_root_table[] = { { .ctl_name = 0 } }; +#ifdef CONFIG_PROC_FS static int ipq_get_info(char *buffer, char **start, off_t offset, int length) { @@ -653,6 +654,7 @@ ipq_get_info(char *buffer, char **start, off_t offset, int length) len = 0; return len; } +#endif /* CONFIG_PROC_FS */ static struct nf_queue_handler nfqh = { .name = "ip6_queue", |