From: Daniel Wagner Date: Thu, 27 Jan 2011 13:11:18 +0000 (+0100) Subject: openvpn: Fix typo in routing prefix check X-Git-Tag: 2.0_alpha~1815 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c20a42a1bd6fc0edabd3772b4ed145c3c28e588b;p=framework%2Fconnectivity%2Fconnman.git openvpn: Fix typo in routing prefix check --- diff --git a/plugins/openvpn.c b/plugins/openvpn.c index 6083874..7973542 100644 --- a/plugins/openvpn.c +++ b/plugins/openvpn.c @@ -115,7 +115,7 @@ static int ov_notify(DBusMessage *msg, struct connman_provider *provider) if (!strcmp(key, "ifconfig_remote")) connman_provider_set_string(provider, "Peer", value); - if (g_str_has_prefix(key, "network_") == TRUE) + if (g_str_has_prefix(key, "route_") == TRUE) connman_provider_append_route(provider, key, value); ov_append_dns_entries(key, value, &dns_entries);