missing dport in f_u32 output
Small typo from last change to decode filters. Should print dport not port.
This commit is contained in:
parent
4c9ffc2f8c
commit
cfa440b0da
|
|
@ -838,7 +838,7 @@ static void show_key(FILE *f, const struct tc_u32_key *key)
|
||||||
ntohl(key->val) >> 16);
|
ntohl(key->val) >> 16);
|
||||||
return;
|
return;
|
||||||
case 0xffffffff:
|
case 0xffffffff:
|
||||||
fprintf(f, "\n sport %u, port %u",
|
fprintf(f, "\n sport %u, dport %u",
|
||||||
ntohl(key->val) & 0xffff,
|
ntohl(key->val) & 0xffff,
|
||||||
ntohl(key->val) >> 16);
|
ntohl(key->val) >> 16);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue