diff options
author | Jukka Rissanen <jukka.rissanen@linux.intel.com> | 2012-11-30 11:30:46 +0200 |
---|---|---|
committer | Patrik Flykt <patrik.flykt@linux.intel.com> | 2012-11-30 15:01:19 +0200 |
commit | 568eb8c88197e583aef32166618072df33ef6126 (patch) | |
tree | 1be58c814f005bcdff05837f84bfd5dc1ced1550 /vpn | |
parent | 2513aed72bebdd503dbc63607b34e9474dfe8b86 (diff) | |
download | connman-568eb8c88197e583aef32166618072df33ef6126.tar.gz connman-568eb8c88197e583aef32166618072df33ef6126.tar.bz2 connman-568eb8c88197e583aef32166618072df33ef6126.zip |
l2tp: Do not save the password
Diffstat (limited to 'vpn')
-rw-r--r-- | vpn/plugins/l2tp.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/vpn/plugins/l2tp.c b/vpn/plugins/l2tp.c index 9729a75c..d7439cd5 100644 --- a/vpn/plugins/l2tp.c +++ b/vpn/plugins/l2tp.c @@ -271,12 +271,6 @@ static int l2tp_save(struct vpn_provider *provider, GKeyFile *keyfile) } } - option = vpn_provider_get_string(provider, "L2TP.Password"); - if (option != NULL) - g_key_file_set_string(keyfile, - vpn_provider_get_save_group(provider), - "L2TP.Password", option); - return 0; } |