From: nbd Date: Sun, 7 Feb 2016 20:15:21 +0000 (+0000) Subject: busybox: fix route tables in ip rule show output X-Git-Url: http://git.archive.openwrt.org/?p=openwrt.git;a=commitdiff_plain;h=51238ed0eb5123cd6f2f5e9fc5d3adf23ae511f5 busybox: fix route tables in ip rule show output Signed-off-by: Felix Fietkau git-svn-id: svn://svn.openwrt.org/openwrt/trunk@48649 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/utils/busybox/patches/020-networking-libiproute-fix-displaying-route-table-for.patch b/package/utils/busybox/patches/020-networking-libiproute-fix-displaying-route-table-for.patch new file mode 100644 index 0000000000..1e153ea918 --- /dev/null +++ b/package/utils/busybox/patches/020-networking-libiproute-fix-displaying-route-table-for.patch @@ -0,0 +1,23 @@ +From: Felix Fietkau +Date: Sun, 7 Feb 2016 21:11:21 +0100 +Subject: [PATCH] networking/libiproute: fix displaying route table for rules + +r->rtm_table only supports a 8 bit table id, prefer RTA_TABLE if +present. + +Signed-off-by: Felix Fietkau +--- + +--- a/networking/libiproute/iprule.c ++++ b/networking/libiproute/iprule.c +@@ -119,7 +119,9 @@ static int FAST_FUNC print_rule(const st + printf("iif %s ", (char*)RTA_DATA(tb[RTA_IIF])); + } + +- if (r->rtm_table) ++ if (tb[RTA_TABLE]) ++ printf("lookup %s ", rtnl_rttable_n2a(*(uint32_t*)RTA_DATA(tb[RTA_TABLE]))); ++ else if (r->rtm_table) + printf("lookup %s ", rtnl_rttable_n2a(r->rtm_table)); + + if (tb[RTA_FLOW]) {