From: Patrick McHardy <kaber@trash.net>
To: Thomas Graf <tgraf@suug.ch>
Cc: laforge@netfilter.org, netdev@oss.sgi.com,
Netfilter Development Mailinglist
<netfilter-devel@lists.netfilter.org>,
hno@marasystems.com
Subject: Re: [PATCH] iptables: Fix warning in CONNMARK
Date: Sun, 24 Oct 2004 16:17:34 +0200 [thread overview]
Message-ID: <417BB97E.2000706@trash.net> (raw)
In-Reply-To: <20041024135721.GO21977@postel.suug.ch>
Applied, thanks.
Thomas Graf wrote:
>Signed-off-by: Thomas Graf <tgraf@suug.ch>
>
>--- linux-2.6.10-rc1-bk1.orig/net/ipv4/netfilter/ipt_CONNMARK.c 2004-10-24 10:58:49.000000000 +0200
>+++ linux-2.6.10-rc1-bk1/net/ipv4/netfilter/ipt_CONNMARK.c 2004-10-24 15:35:18.000000000 +0200
>@@ -60,7 +60,7 @@
> break;
> case IPT_CONNMARK_RESTORE:
> nfmark = (*pskb)->nfmark;
>- diff = (ct->mark ^ nfmark & markinfo->mask);
>+ diff = ((ct->mark ^ nfmark) & markinfo->mask);
> if (diff != 0) {
> (*pskb)->nfmark = nfmark ^ diff;
> (*pskb)->nfcache |= NFC_ALTERED;
>
>
>
prev parent reply other threads:[~2004-10-24 14:17 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-10-24 13:57 [PATCH] iptables: Fix warning in CONNMARK Thomas Graf
2004-10-24 14:17 ` Patrick McHardy [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=417BB97E.2000706@trash.net \
--to=kaber@trash.net \
--cc=hno@marasystems.com \
--cc=laforge@netfilter.org \
--cc=netdev@oss.sgi.com \
--cc=netfilter-devel@lists.netfilter.org \
--cc=tgraf@suug.ch \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).