dect
/
linux-2.6
Archived
13
0
Fork 0

IPv6: fix Routing Header Type 0 handling thinko

Oops, thinko.  The test for accempting a RH0 was exatly the wrong way
around.

Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
YOSHIFUJI Hideaki 2007-04-25 11:13:49 +09:00 committed by Linus Torvalds
parent 12145387a0
commit a23cf14b16
1 changed files with 1 additions and 1 deletions

View File

@ -399,7 +399,7 @@ static int ipv6_rthdr_rcv(struct sk_buff **skbp)
break;
#endif
case IPV6_SRCRT_TYPE_0:
if (accept_source_route <= 0)
if (accept_source_route > 0)
break;
kfree_skb(skb);
return -1;