From: Samuel Ortiz Date: Thu, 5 Aug 2010 22:27:19 +0000 (+0200) Subject: Export the VPN PAC file to the VPN service X-Git-Tag: 0.57~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cd388f18d9b315aa64843af42b163404d2ae81b4;p=platform%2Fupstream%2Fconnman.git Export the VPN PAC file to the VPN service --- diff --git a/src/provider.c b/src/provider.c index 5b602ad..8783a30 100644 --- a/src/provider.c +++ b/src/provider.c @@ -586,6 +586,8 @@ int connman_provider_set_string(struct connman_provider *provider, } else if (g_str_equal(key, "PAC") == TRUE) { g_free(provider->element.ipv4.pac); provider->element.ipv4.pac = g_strdup(value); + __connman_service_set_proxy_autoconfig(provider->vpn_service, + value); } else if (g_str_equal(key, "DNS") == TRUE) { g_free(provider->dns); provider->dns = g_strdup(value);