From 20fe5561dfe7a6f1da3aac07b38d0773c2758e5e Mon Sep 17 00:00:00 2001 From: Arne Schwabe Date: Sat, 23 Nov 2013 13:40:34 +0100 Subject: [PATCH] Fix compile error in ssl_openssl introduced by polar external-management patch Acked-by: Steffan Karger Acked-by: Gert Doering Message-Id: <1385210434-28364-1-git-send-email-arne@rfc2549.org> URL: http://article.gmane.org/gmane.network.openvpn.devel/8039 Signed-off-by: Gert Doering --- src/openvpn/ssl_openssl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/openvpn/ssl_openssl.c b/src/openvpn/ssl_openssl.c index d6e194af1..120aa6667 100644 --- a/src/openvpn/ssl_openssl.c +++ b/src/openvpn/ssl_openssl.c @@ -534,7 +534,7 @@ void tls_ctx_load_cert_file (struct tls_root_ctx *ctx, const char *cert_file, const char *cert_file_inline) { - tls_ctx_load_cert_file_ext(ctx, cert_file, cert_file_inline, NULL); + tls_ctx_load_cert_file_and_copy (ctx, cert_file, cert_file_inline, NULL); } void @@ -684,7 +684,7 @@ tls_ctx_use_external_private_key (struct tls_root_ctx *ctx, ASSERT (NULL != ctx); ASSERT (NULL != cert); - tls_ctx_load_cert_file_ext(ctx, cert_file, cert_file_inline, &cert); + tls_ctx_load_cert_file_and_copy (ctx, cert_file, cert_file_inline, &cert); /* allocate custom RSA method object */ ALLOC_OBJ_CLEAR (rsa_meth, RSA_METHOD); -- 2.47.2