Commit d8a45819 authored by shemminger's avatar shemminger

Fix u32 filter for ipv6 priority

parent 09954dc6
......@@ -5,7 +5,8 @@
2006-01-10 Stephen Hemminger <shemminger@osdl.org>
* Update headers to santized kernel 2.6.15
* Fix ipv6 priority option in u32
2006-01-03 Alpt <alpt@freaknet.org>
* Ip man page addition
......
......@@ -495,7 +495,7 @@ static int parse_ip6(int *argc_p, char ***argv_p, struct tc_u32_sel *sel)
}
if (strcmp(*argv, "priority") == 0) {
NEXT_ARG();
res = parse_u8(&argc, &argv, sel, 0, 0);
res = parse_u8(&argc, &argv, sel, 4, 0);
goto done;
}
if (strcmp(*argv, "protocol") == 0) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment