Fix u32 filter for ipv6 priority
This commit is contained in:
parent
09954dc61a
commit
d8a45819b2
|
|
@ -5,6 +5,7 @@
|
||||||
2006-01-10 Stephen Hemminger <shemminger@osdl.org>
|
2006-01-10 Stephen Hemminger <shemminger@osdl.org>
|
||||||
|
|
||||||
* Update headers to santized kernel 2.6.15
|
* Update headers to santized kernel 2.6.15
|
||||||
|
* Fix ipv6 priority option in u32
|
||||||
|
|
||||||
2006-01-03 Alpt <alpt@freaknet.org>
|
2006-01-03 Alpt <alpt@freaknet.org>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -495,7 +495,7 @@ static int parse_ip6(int *argc_p, char ***argv_p, struct tc_u32_sel *sel)
|
||||||
}
|
}
|
||||||
if (strcmp(*argv, "priority") == 0) {
|
if (strcmp(*argv, "priority") == 0) {
|
||||||
NEXT_ARG();
|
NEXT_ARG();
|
||||||
res = parse_u8(&argc, &argv, sel, 0, 0);
|
res = parse_u8(&argc, &argv, sel, 4, 0);
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
if (strcmp(*argv, "protocol") == 0) {
|
if (strcmp(*argv, "protocol") == 0) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue