aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
Diffstat (limited to 'net')
-rw-r--r--net/ipv4/netfilter/nf_nat_sip.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/net/ipv4/netfilter/nf_nat_sip.c b/net/ipv4/netfilter/nf_nat_sip.c
index fac97cf51ae5..a32d746c4592 100644
--- a/net/ipv4/netfilter/nf_nat_sip.c
+++ b/net/ipv4/netfilter/nf_nat_sip.c
@@ -260,7 +260,11 @@ static unsigned int ip_nat_sdp(struct sk_buff **pskb,
260 DEBUGP("ip_nat_sdp():\n"); 260 DEBUGP("ip_nat_sdp():\n");
261 261
262 /* Connection will come from reply */ 262 /* Connection will come from reply */
263 newip = ct->tuplehash[!dir].tuple.dst.u3.ip; 263 if (ct->tuplehash[dir].tuple.src.u3.ip ==
264 ct->tuplehash[!dir].tuple.dst.u3.ip)
265 newip = exp->tuple.dst.u3.ip;
266 else
267 newip = ct->tuplehash[!dir].tuple.dst.u3.ip;
264 268
265 exp->saved_ip = exp->tuple.dst.u3.ip; 269 exp->saved_ip = exp->tuple.dst.u3.ip;
266 exp->tuple.dst.u3.ip = newip; 270 exp->tuple.dst.u3.ip = newip;