diff options
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/netfilter/Makefile | 1 | ||||
-rw-r--r-- | net/ipv4/netfilter/nf_conntrack_l3proto_ipv4.c | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/net/ipv4/netfilter/Makefile b/net/ipv4/netfilter/Makefile index 245db9df3337..33001621465b 100644 --- a/net/ipv4/netfilter/Makefile +++ b/net/ipv4/netfilter/Makefile | |||
@@ -57,7 +57,6 @@ obj-$(CONFIG_IP_NF_TARGET_ECN) += ipt_ECN.o | |||
57 | obj-$(CONFIG_IP_NF_TARGET_MASQUERADE) += ipt_MASQUERADE.o | 57 | obj-$(CONFIG_IP_NF_TARGET_MASQUERADE) += ipt_MASQUERADE.o |
58 | obj-$(CONFIG_IP_NF_TARGET_REJECT) += ipt_REJECT.o | 58 | obj-$(CONFIG_IP_NF_TARGET_REJECT) += ipt_REJECT.o |
59 | obj-$(CONFIG_IP_NF_TARGET_SYNPROXY) += ipt_SYNPROXY.o | 59 | obj-$(CONFIG_IP_NF_TARGET_SYNPROXY) += ipt_SYNPROXY.o |
60 | obj-$(CONFIG_IP_NF_TARGET_ULOG) += ipt_ULOG.o | ||
61 | 60 | ||
62 | # generic ARP tables | 61 | # generic ARP tables |
63 | obj-$(CONFIG_IP_NF_ARPTABLES) += arp_tables.o | 62 | obj-$(CONFIG_IP_NF_ARPTABLES) += arp_tables.o |
diff --git a/net/ipv4/netfilter/nf_conntrack_l3proto_ipv4.c b/net/ipv4/netfilter/nf_conntrack_l3proto_ipv4.c index 4ce44c4bc57b..a054fe083431 100644 --- a/net/ipv4/netfilter/nf_conntrack_l3proto_ipv4.c +++ b/net/ipv4/netfilter/nf_conntrack_l3proto_ipv4.c | |||
@@ -358,7 +358,7 @@ static struct nf_sockopt_ops so_getorigdst = { | |||
358 | .pf = PF_INET, | 358 | .pf = PF_INET, |
359 | .get_optmin = SO_ORIGINAL_DST, | 359 | .get_optmin = SO_ORIGINAL_DST, |
360 | .get_optmax = SO_ORIGINAL_DST+1, | 360 | .get_optmax = SO_ORIGINAL_DST+1, |
361 | .get = &getorigdst, | 361 | .get = getorigdst, |
362 | .owner = THIS_MODULE, | 362 | .owner = THIS_MODULE, |
363 | }; | 363 | }; |
364 | 364 | ||