summaryrefslogtreecommitdiffstats
path: root/src/openvpn/route.c
diff options
context:
space:
mode:
authorHeiko Hund <heiko.hund@sophos.com>2014-04-01 12:06:43 +0200
committerGert Doering <gert@greenie.muc.de>2014-04-01 15:41:12 +0200
commit60b40a58c4caaeb5c5aa8d402020414d3ba05050 (patch)
tree53efcf11f7b31fd7990108df9a06e149a8332da9 /src/openvpn/route.c
parente38f554cd4b956f6eedd56c7a76a3ba7c84ad824 (diff)
downloadopenvpn-60b40a58c4caaeb5c5aa8d402020414d3ba05050.tar.gz
openvpn-60b40a58c4caaeb5c5aa8d402020414d3ba05050.tar.xz
openvpn-60b40a58c4caaeb5c5aa8d402020414d3ba05050.zip
fix route struct name
This slipped in with commit d0085293. Signed-off-by: Heiko Hund <heiko.hund@sophos.com> Acked-by: Gert Doering <gert@greenie.muc.de> 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 <gert@greenie.muc.de>
Diffstat (limited to 'src/openvpn/route.c')
-rw-r--r--src/openvpn/route.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openvpn/route.c b/src/openvpn/route.c
index 13eed5f..825ea47 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);