diff mbox series

net: netfilter: fix coding style

Message ID 1512459249-857-1-git-send-email-xiaolou4617@gmail.com
State Not Applicable
Delegated to: Pablo Neira
Headers show
Series net: netfilter: fix coding style | expand

Commit Message

Lin Zhang Dec. 5, 2017, 7:34 a.m. UTC
I think use variable 'min' instead of number '1024' is better.

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

Patch

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);