summaryrefslogtreecommitdiffstats
path: root/manage.c
diff options
context:
space:
mode:
authorjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2008-07-18 00:42:37 +0000
committerjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2008-07-18 00:42:37 +0000
commit5acd2baf6d350515258a325d3c43ac91a4d89748 (patch)
treebf0d903cafe9fd3db582b81ae75594b2511f8209 /manage.c
parent222f0840463e0681181b374f8734153d9f23443d (diff)
downloadopenvpn-5acd2baf6d350515258a325d3c43ac91a4d89748.tar.gz
openvpn-5acd2baf6d350515258a325d3c43ac91a4d89748.tar.xz
openvpn-5acd2baf6d350515258a325d3c43ac91a4d89748.zip
Fixed code inclusion bug that was erroneously testing
defined(P2MP_SERVER) rather than P2MP_SERVER. Fixed compile issues when USE_CRYPTO is undefined. git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@3075 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'manage.c')
-rw-r--r--manage.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/manage.c b/manage.c
index cfe91aa..12ed97e 100644
--- a/manage.c
+++ b/manage.c
@@ -630,8 +630,10 @@ man_query_need_str (struct management *man, const char *type, const char *action
static void
man_forget_passwords (struct management *man)
{
+#if defined(USE_CRYPTO) && defined(USE_SSL)
ssl_purge_auth ();
msg (M_CLIENT, "SUCCESS: Passwords were forgotten");
+#endif
}
static void
@@ -1375,9 +1377,10 @@ man_reset_client_socket (struct management *man, const bool exiting)
}
if (!exiting)
{
+#if defined(USE_CRYPTO) && defined(USE_SSL)
if (man->settings.flags & MF_FORGET_DISCONNECT)
- ssl_purge_auth ();
-
+ ssl_purge_auth ();
+#endif
if (man->settings.flags & MF_SIGNAL) {
int mysig = man_mod_signal (man, SIGUSR1);
if (mysig >= 0)