From b6a8bada51347e67a34630b23e48483eea8d9548 Mon Sep 17 00:00:00 2001 From: Adriaan de Jong Date: Mon, 31 Oct 2011 16:29:21 +0100 Subject: [PATCH] Fixed a typo when initialising cryptoapi certs Signed-off-by: Adriaan de Jong Acked-by: Heiko Hund Signed-off-by: David Sommerseth --- ssl_openssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl_openssl.c b/ssl_openssl.c index 391968a9d..b95944c5b 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 */ -- 2.47.2