OSDN Git Service

netfilter: nat: fix indentation of function arguments
authorJeremy Sowden <jeremy@azazel.net>
Tue, 7 Mar 2023 23:30:49 +0000 (23:30 +0000)
committerFlorian Westphal <fw@strlen.de>
Wed, 8 Mar 2023 13:25:44 +0000 (14:25 +0100)
A couple of arguments to a function call are incorrectly indented.
Fix them.

Signed-off-by: Jeremy Sowden <jeremy@azazel.net>
Signed-off-by: Florian Westphal <fw@strlen.de>
net/netfilter/nf_nat_core.c

index e29e4cc..ce829d4 100644 (file)
@@ -549,8 +549,8 @@ get_unique_tuple(struct nf_conntrack_tuple *tuple,
                if (range->flags & NF_NAT_RANGE_PROTO_SPECIFIED) {
                        if (!(range->flags & NF_NAT_RANGE_PROTO_OFFSET) &&
                            l4proto_in_range(tuple, maniptype,
-                                 &range->min_proto,
-                                 &range->max_proto) &&
+                                            &range->min_proto,
+                                            &range->max_proto) &&
                            (range->min_proto.all == range->max_proto.all ||
                             !nf_nat_used_tuple(tuple, ct)))
                                return;