From: Paul Fox Date: Wed, 20 Jul 2005 19:01:05 +0000 (-0000) Subject: applying fix for: X-Git-Tag: 1_1_0~893 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5dc0ceeb9ef753722de9e47d6e6284897d69b664;p=oweals%2Fbusybox.git applying fix for: 0000203: 'ip route flush cache' not implemented --- diff --git a/networking/libiproute/iproute.c b/networking/libiproute/iproute.c index 9c57140a5..fabab5b7a 100644 --- a/networking/libiproute/iproute.c +++ b/networking/libiproute/iproute.c @@ -537,6 +537,15 @@ static int iproute_list_or_flush(int argc, char **argv, int flush) } else if (matches(*argv, "match") == 0) { NEXT_ARG(); get_prefix(&filter.mdst, *argv, do_ipv6); + } else if (matches(*argv, "table") == 0) { + NEXT_ARG(); + if (matches(*argv, "cache") == 0) { + filter.tb = -1; + } else if (matches(*argv, "main") != 0) { + invarg("invalid \"table\"", *argv); + } + } else if (matches(*argv, "cache") == 0) { + filter.tb = -1; } else { if (matches(*argv, "exact") == 0) { NEXT_ARG();