aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/netfilter/xt_TCPMSS.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netfilter/xt_TCPMSS.c b/net/netfilter/xt_TCPMSS.c
index 6113cc7efffc..cd24290f3b2f 100644
--- a/net/netfilter/xt_TCPMSS.c
+++ b/net/netfilter/xt_TCPMSS.c
@@ -60,7 +60,7 @@ tcpmss_mangle_packet(struct sk_buff *skb,
60 60
61 /* This is a fragment, no TCP header is available */ 61 /* This is a fragment, no TCP header is available */
62 if (par->fragoff != 0) 62 if (par->fragoff != 0)
63 return XT_CONTINUE; 63 return 0;
64 64
65 if (!skb_make_writable(skb, skb->len)) 65 if (!skb_make_writable(skb, skb->len))
66 return -1; 66 return -1;