From: Ulrich Weber Date: Thu, 12 Aug 2010 09:05:19 +0000 (+0200) Subject: iproute2: dont filter cached routes on iproute_get X-Git-Tag: v2.6.35.1~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c73f3e02f8ae25e5daad0367690a3069895dd8a3;p=thirdparty%2Fiproute2.git iproute2: dont filter cached routes on iproute_get iproute_get will return cloned routes for IPv4 and cloned as well non-cloned routes for IPv6. Therefore RTM_F_CLONED flag should not be checked for iproute_get routes. Check in print_route will always fail because valid values are 0 and 1. Signed-off-by: Ulrich Weber --- diff --git a/ip/iproute.c b/ip/iproute.c index 711576ead..b43933cda 100644 --- a/ip/iproute.c +++ b/ip/iproute.c @@ -1286,6 +1286,7 @@ int iproute_get(int argc, char **argv) memset(&req, 0, sizeof(req)); iproute_reset_filter(); + filter.cloned = 2; req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg)); req.n.nlmsg_flags = NLM_F_REQUEST;