diff options
author | Adriaan de Jong <dejong@fox-it.com> | 2011-10-31 16:29:21 +0100 |
---|---|---|
committer | David Sommerseth <davids@redhat.com> | 2011-11-21 11:51:40 +0100 |
commit | b6a8bada51347e67a34630b23e48483eea8d9548 (patch) | |
tree | a45d26589b95be5b791adc8b72f4aed7316d8872 | |
parent | be960aad88a78967e6425be0d1dc36ea1af6f584 (diff) | |
download | openvpn-b6a8bada51347e67a34630b23e48483eea8d9548.tar.gz openvpn-b6a8bada51347e67a34630b23e48483eea8d9548.tar.xz openvpn-b6a8bada51347e67a34630b23e48483eea8d9548.zip |
Fixed a typo when initialising cryptoapi certs
Signed-off-by: Adriaan de Jong <dejong@fox-it.com>
Acked-by: Heiko Hund <heiko.hund@sophos.com>
Signed-off-by: David Sommerseth <davids@redhat.com>
-rw-r--r-- | ssl_openssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl_openssl.c b/ssl_openssl.c index 391968a..b95944c 100644 --- a/ssl_openssl.c +++ b/ssl_openssl.c @@ -339,7 +339,7 @@ tls_ctx_load_cryptoapi(struct tls_root_ctx *ctx, const char *cryptoapi_cert) /* Load Certificate and Private Key */ if (!SSL_CTX_use_CryptoAPI_certificate (ctx->ctx, cryptoapi_cert)) msg (M_SSLERR, "Cannot load certificate \"%s\" from Microsoft Certificate Store", - options->cryptoapi_cert); + cryptoapi_cert); } #endif /* WIN32 */ |