diff options
| -rw-r--r-- | net/ipv4/netfilter/ip_nat_proto_tcp.c | 3 | ||||
| -rw-r--r-- | net/ipv4/netfilter/ip_nat_proto_udp.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/net/ipv4/netfilter/ip_nat_proto_tcp.c b/net/ipv4/netfilter/ip_nat_proto_tcp.c index a91cfceff272..a98e36d2b3c6 100644 --- a/net/ipv4/netfilter/ip_nat_proto_tcp.c +++ b/net/ipv4/netfilter/ip_nat_proto_tcp.c | |||
| @@ -40,7 +40,8 @@ tcp_unique_tuple(struct ip_conntrack_tuple *tuple, | |||
| 40 | enum ip_nat_manip_type maniptype, | 40 | enum ip_nat_manip_type maniptype, |
| 41 | const struct ip_conntrack *conntrack) | 41 | const struct ip_conntrack *conntrack) |
| 42 | { | 42 | { |
| 43 | static u_int16_t port, *portptr; | 43 | static u_int16_t port; |
| 44 | u_int16_t *portptr; | ||
| 44 | unsigned int range_size, min, i; | 45 | unsigned int range_size, min, i; |
| 45 | 46 | ||
| 46 | if (maniptype == IP_NAT_MANIP_SRC) | 47 | if (maniptype == IP_NAT_MANIP_SRC) |
diff --git a/net/ipv4/netfilter/ip_nat_proto_udp.c b/net/ipv4/netfilter/ip_nat_proto_udp.c index c669e3b5f5d0..9f66e5625664 100644 --- a/net/ipv4/netfilter/ip_nat_proto_udp.c +++ b/net/ipv4/netfilter/ip_nat_proto_udp.c | |||
| @@ -41,7 +41,8 @@ udp_unique_tuple(struct ip_conntrack_tuple *tuple, | |||
| 41 | enum ip_nat_manip_type maniptype, | 41 | enum ip_nat_manip_type maniptype, |
| 42 | const struct ip_conntrack *conntrack) | 42 | const struct ip_conntrack *conntrack) |
| 43 | { | 43 | { |
| 44 | static u_int16_t port, *portptr; | 44 | static u_int16_t port; |
| 45 | u_int16_t *portptr; | ||
| 45 | unsigned int range_size, min, i; | 46 | unsigned int range_size, min, i; |
| 46 | 47 | ||
| 47 | if (maniptype == IP_NAT_MANIP_SRC) | 48 | if (maniptype == IP_NAT_MANIP_SRC) |
