summaryrefslogtreecommitdiffstats
path: root/ssl.c
diff options
context:
space:
mode:
authorJames Yonan <james@openvpn.net>2010-03-12 03:05:34 +0000
committerJames Yonan <james@openvpn.net>2010-03-12 03:05:34 +0000
commit8c7c6be4893ca15061e15ca1e5990c052d77a016 (patch)
tree08a389bea7c1898dc3d6db1bf5f5f621d09f3759 /ssl.c
parentfdda3135a8a95e7540740fe7a71481dc7a40d610 (diff)
downloadopenvpn-8c7c6be4893ca15061e15ca1e5990c052d77a016.tar.gz
openvpn-8c7c6be4893ca15061e15ca1e5990c052d77a016.tar.xz
openvpn-8c7c6be4893ca15061e15ca1e5990c052d77a016.zip
Modified ">PASSWORD:Verification Failed" management interface
notification to include a client reason string: >PASSWORD:Verification Failed: 'AUTH_TYPE' ['REASON_STRING'] git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@5468 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'ssl.c')
-rw-r--r--ssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl.c b/ssl.c
index 102b02e..1b275af 100644
--- a/ssl.c
+++ b/ssl.c
@@ -1639,7 +1639,7 @@ init_ssl (const struct options *options)
{
#ifdef ENABLE_MANAGEMENT
if (management && (ERR_GET_REASON (ERR_peek_error()) == EVP_R_BAD_DECRYPT))
- management_auth_failure (management, UP_TYPE_PRIVATE_KEY);
+ management_auth_failure (management, UP_TYPE_PRIVATE_KEY, NULL);
#endif
msg (M_WARN|M_SSL, "Cannot load private key file %s", options->priv_key_file);
goto err;