Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5aed9387 authored by Balazs Peter Odor's avatar Balazs Peter Odor Committed by Pablo Neira Ayuso
Browse files

netfilter: nf_nat_sip: fix mangling

In (b20ab9cc netfilter: nf_ct_helper: better logging for dropped packets)
there were some missing brackets around the logging information, thus
always returning drop.

Closes https://bugzilla.kernel.org/show_bug.cgi?id=60061



Signed-off-by: default avatarBalazs Peter Odor <balazs@obiserver.hu>
Signed-off-by: default avatarPablo Neira Ayuso <pablo@netfilter.org>
parent 142dcdd3
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -230,10 +230,11 @@ static unsigned int nf_nat_sip(struct sk_buff *skb, unsigned int protoff,
					&ct->tuplehash[!dir].tuple.src.u3,
					false);
			if (!mangle_packet(skb, protoff, dataoff, dptr, datalen,
					   poff, plen, buffer, buflen))
					   poff, plen, buffer, buflen)) {
				nf_ct_helper_log(skb, ct, "cannot mangle received");
				return NF_DROP;
			}
		}

		/* The rport= parameter (RFC 3581) contains the port number
		 * from which the server received the request. */