From 62011a0b31009a16518e0b17ba7205349a4b2a72 Mon Sep 17 00:00:00 2001 From: Ulrich Weber Date: Fri, 23 Jul 2010 15:39:10 +0200 Subject: [PATCH] iproute2: use int instead of long for RTAX_HOPLIMIT compare otherwise "if ((int)val == -1)" will never match on 64 bit systems Signed-off-by: Ulrich Weber --- ip/iproute.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ip/iproute.c b/ip/iproute.c index 04b253a4..711576ea 100644 --- a/ip/iproute.c +++ b/ip/iproute.c @@ -494,7 +494,7 @@ int print_route(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg) val = *(unsigned*)RTA_DATA(mxrta[i]); switch (i) { case RTAX_HOPLIMIT: - if ((long)val == -1) + if ((int)val == -1) val = 0; /* fall through */ default: