mirror of
https://git.proxmox.com/git/mirror_iproute2
synced 2025-10-17 07:07:15 +00:00
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);
|
||||
return;
|
||||
case 0xffffffff:
|
||||
fprintf(f, "\n sport %u, port %u",
|
||||
fprintf(f, "\n sport %u, dport %u",
|
||||
ntohl(key->val) & 0xffff,
|
||||
ntohl(key->val) >> 16);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user