I think use variable 'min' instead of number '1024' is better.

Signed-off-by: Lin Zhang <xiaolou4...@gmail.com>
---
 net/netfilter/nf_nat_proto_common.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/net/netfilter/nf_nat_proto_common.c 
b/net/netfilter/nf_nat_proto_common.c
index fbce552..e87e683 100644
--- a/net/netfilter/nf_nat_proto_common.c
+++ b/net/netfilter/nf_nat_proto_common.c
@@ -67,7 +67,7 @@ void nf_nat_l4proto_unique_tuple(const struct nf_nat_l3proto 
*l3proto,
                        }
                } else {
                        min = 1024;
-                       range_size = 65535 - 1024 + 1;
+                       range_size = 65535 - min + 1;
                }
        } else {
                min = ntohs(range->min_proto.all);
-- 
1.7.1

Reply via email to