missing dport in f_u32 output

Small typo from last change to decode filters. Should print dport
not port.
This commit is contained in:
Stephen Hemminger 2008-02-22 11:51:35 -08:00
parent 4c9ffc2f8c
commit cfa440b0da

View File

@ -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);