diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2008-07-27 00:43:49 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2008-07-27 00:43:49 +0000 |
commit | 70899be8dd79b2530e3ae5b1946d3f30e3bb6f43 (patch) | |
tree | 8151189551a1f815d9611bdd491fb38ca24f7231 /misc.c | |
parent | b4073a760205f6c341425fe5dd28313e3a12f567 (diff) | |
download | openvpn-70899be8dd79b2530e3ae5b1946d3f30e3bb6f43.tar.gz openvpn-70899be8dd79b2530e3ae5b1946d3f30e3bb6f43.tar.xz openvpn-70899be8dd79b2530e3ae5b1946d3f30e3bb6f43.zip |
Added a warning message when passwords are cached in memory.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@3127 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'misc.c')
-rw-r--r-- | misc.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1480,6 +1480,10 @@ purge_user_pass (struct user_pass *up, const bool force) CLEAR (*up); up->nocache = nocache; } + else + { + msg (M_WARN, "WARNING: this configuration may cache passwords in memory -- use the auth-nocache option to prevent this"); + } } /* |