aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2006-09-20 14:58:50 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2006-09-22 18:19:48 -0400
commit2be344c4461d29b99113f62fa91c5ceab9997329 (patch)
treed543156b5811e9577384e76d02417826b82e8155
parent68e1f188de535865d4543bae92d168c007857e7b (diff)
[NETFILTER]: ipt_TCPMSS: remove impossible condition
Every skb must have a dst_entry at this point. Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--net/ipv4/netfilter/ipt_TCPMSS.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/net/ipv4/netfilter/ipt_TCPMSS.c b/net/ipv4/netfilter/ipt_TCPMSS.c
index bfc8d9c7d02..b2d3c4f992d 100644
--- a/net/ipv4/netfilter/ipt_TCPMSS.c
+++ b/net/ipv4/netfilter/ipt_TCPMSS.c
@@ -73,13 +73,6 @@ ipt_tcpmss_target(struct sk_buff **pskb,
73 } 73 }
74 74
75 if (tcpmssinfo->mss == IPT_TCPMSS_CLAMP_PMTU) { 75 if (tcpmssinfo->mss == IPT_TCPMSS_CLAMP_PMTU) {
76 if (!(*pskb)->dst) {
77 if (net_ratelimit())
78 printk(KERN_ERR "ipt_tcpmss_target: "
79 "no dst?! can't determine path-MTU\n");
80 return NF_DROP; /* or IPT_CONTINUE ?? */
81 }
82
83 if (dst_mtu((*pskb)->dst) <= sizeof(struct iphdr) + 76 if (dst_mtu((*pskb)->dst) <= sizeof(struct iphdr) +
84 sizeof(struct tcphdr)) { 77 sizeof(struct tcphdr)) {
85 if (net_ratelimit()) 78 if (net_ratelimit())