020-networking-libiproute-fix-displaying-route-table-for.patch 694 B

1234567891011121314151617181920212223
  1. From: Felix Fietkau <nbd@nbd.name>
  2. Date: Sun, 7 Feb 2016 21:11:21 +0100
  3. Subject: [PATCH] networking/libiproute: fix displaying route table for rules
  4. r->rtm_table only supports a 8 bit table id, prefer RTA_TABLE if
  5. present.
  6. Signed-off-by: Felix Fietkau <nbd@nbd.name>
  7. ---
  8. --- a/networking/libiproute/iprule.c
  9. +++ b/networking/libiproute/iprule.c
  10. @@ -119,7 +119,9 @@ static int FAST_FUNC print_rule(const st
  11. printf("iif %s ", (char*)RTA_DATA(tb[RTA_IIF]));
  12. }
  13. - if (r->rtm_table)
  14. + if (tb[RTA_TABLE])
  15. + printf("lookup %s ", rtnl_rttable_n2a(*(uint32_t*)RTA_DATA(tb[RTA_TABLE])));
  16. + else if (r->rtm_table)
  17. printf("lookup %s ", rtnl_rttable_n2a(r->rtm_table));
  18. if (tb[RTA_FLOW]) {