From: Heiko Hund Date: Tue, 1 Apr 2014 10:06:43 +0000 (+0200) Subject: fix route struct name X-Git-Tag: v2.4_alpha1~453 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=60b40a58c4caaeb5c5aa8d402020414d3ba05050;p=thirdparty%2Fopenvpn.git fix route struct name This slipped in with commit d0085293. Signed-off-by: Heiko Hund Acked-by: Gert Doering Message-Id: <1396346803-31772-1-git-send-email-heiko.hund@sophos.com> URL: http://article.gmane.org/gmane.network.openvpn.devel/8421 Signed-off-by: Gert Doering --- diff --git a/src/openvpn/route.c b/src/openvpn/route.c index 13eed5f98..825ea479b 100644 --- a/src/openvpn/route.c +++ b/src/openvpn/route.c @@ -2117,7 +2117,7 @@ test_routes (const struct route_list *rl, const struct tuntap *tt) if (rl) { - struct route *r; + struct route_ipv4 *r; for (r = rl->routes, len = 0; r; r = r->next, ++len) test_route_helper (&ret, &count, &good, &ambig, adapters, r->gateway);