Signed-off-by: Jan Engelhardt <jengelh@xxxxxxxxxxxxxxx> --- net/netfilter/xt_DSCP.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Index: linux-2.6/net/netfilter/xt_DSCP.c =================================================================== --- linux-2.6.orig/net/netfilter/xt_DSCP.c +++ linux-2.6/net/netfilter/xt_DSCP.c @@ -134,7 +134,7 @@ tos_tg(struct sk_buff *skb, const struct if (!skb_make_writable(skb, sizeof(struct iphdr))) return NF_DROP; iph = ip_hdr(skb); - ipv4_change_dsfield(iph, ~0, nv); + ipv4_change_dsfield(iph, 0, nv); } return XT_CONTINUE; @@ -156,7 +156,7 @@ tos_tg6(struct sk_buff *skb, const struc if (!skb_make_writable(skb, sizeof(struct iphdr))) return NF_DROP; iph = ipv6_hdr(skb); - ipv6_change_dsfield(iph, ~0, nv); + ipv6_change_dsfield(iph, 0, nv); } return XT_CONTINUE; - To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html