diff options
author | Patrick McHardy <kaber@trash.net> | 2008-01-15 08:48:02 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-29 00:02:39 +0100 |
commit | 9b1c2cfd7a8b3840cf5c99d0560e641ff4a3425b (patch) | |
tree | a3d7f7462fa119bec4073da62709a5c378ffd8c2 | |
parent | [NETFILTER]: nf_conntrack_sctp: remove unused ttag field from conntrack data (diff) | |
download | linux-9b1c2cfd7a8b3840cf5c99d0560e641ff4a3425b.tar.xz linux-9b1c2cfd7a8b3840cf5c99d0560e641ff4a3425b.zip |
[NETFILTER]: nf_conntrack_sctp: replace magic value by symbolic constant
Use SCTP_CHUNK_FLAG_T instead of 0x1.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/netfilter/nf_conntrack_proto_sctp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netfilter/nf_conntrack_proto_sctp.c b/net/netfilter/nf_conntrack_proto_sctp.c index 177e8f60aa1c..14b1c02c4775 100644 --- a/net/netfilter/nf_conntrack_proto_sctp.c +++ b/net/netfilter/nf_conntrack_proto_sctp.c @@ -341,7 +341,7 @@ static int sctp_packet(struct nf_conn *ct, /* Sec 8.5.1 (C) */ if (sh->vtag != ct->proto.sctp.vtag[dir] && sh->vtag != ct->proto.sctp.vtag[!dir] && - (sch->flags & 1)) + sch->flags & SCTP_CHUNK_FLAG_T) goto out_unlock; } else if (sch->type == SCTP_CID_COOKIE_ECHO) { /* Sec 8.5.1 (D) */ |