]> git.ipfire.org Git - thirdparty/openvpn.git/commitdiff
Fix compile error in ssl_openssl introduced by polar external-management patch
authorArne Schwabe <arne@rfc2549.org>
Sat, 23 Nov 2013 12:40:34 +0000 (13:40 +0100)
committerGert Doering <gert@greenie.muc.de>
Sat, 23 Nov 2013 12:52:40 +0000 (13:52 +0100)
Acked-by: Steffan Karger <steffan@karger.me>
Acked-by: Gert Doering <gert@greenie.muc.de>
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 <gert@greenie.muc.de>
(cherry picked from commit 20fe5561dfe7a6f1da3aac07b38d0773c2758e5e)

src/openvpn/ssl_openssl.c

index 6f6f24dab03290b60169422e6d5cce7a345c8037..0193acf3e443271107b2059e53c63e4e7a1dbe3a 100644 (file)
@@ -535,7 +535,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
@@ -686,7 +686,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);