diff options
author | Jukka Rissanen <jukka.rissanen@linux.intel.com> | 2012-11-30 11:30:47 +0200 |
---|---|---|
committer | Patrik Flykt <patrik.flykt@linux.intel.com> | 2012-11-30 15:01:19 +0200 |
commit | f0ef9b6dcda9918b21b2df269738dbb42d8f2dee (patch) | |
tree | 5d011c08f511d3c37ae6aad12f097917723bd2d4 | |
parent | 568eb8c88197e583aef32166618072df33ef6126 (diff) | |
download | connman-f0ef9b6dcda9918b21b2df269738dbb42d8f2dee.tar.gz connman-f0ef9b6dcda9918b21b2df269738dbb42d8f2dee.tar.bz2 connman-f0ef9b6dcda9918b21b2df269738dbb42d8f2dee.zip |
pptp: Do not save the password
-rw-r--r-- | vpn/plugins/pptp.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/vpn/plugins/pptp.c b/vpn/plugins/pptp.c index 154bb624..104ae785 100644 --- a/vpn/plugins/pptp.c +++ b/vpn/plugins/pptp.c @@ -232,12 +232,6 @@ static int pptp_save(struct vpn_provider *provider, GKeyFile *keyfile) } } - option = vpn_provider_get_string(provider, "PPTP.Password"); - if (option != NULL) - g_key_file_set_string(keyfile, - vpn_provider_get_save_group(provider), - "PPTP.Password", option); - return 0; } |