summaryrefslogtreecommitdiffstats
path: root/ssl_openssl.c
diff options
context:
space:
mode:
authorAdriaan de Jong <dejong@fox-it.com>2011-07-05 11:41:14 +0200
committerDavid Sommerseth <davids@redhat.com>2011-10-22 16:00:49 +0200
commit477127061a22e6e998755c657873aa1b212ea59a (patch)
treedc48a674444676e5b2e9e553c5fd8e2aef02d2a4 /ssl_openssl.c
parent5fa82c550f8160bb8dd107bc5f3d516ba996dd6d (diff)
downloadopenvpn-477127061a22e6e998755c657873aa1b212ea59a.tar.gz
openvpn-477127061a22e6e998755c657873aa1b212ea59a.tar.xz
openvpn-477127061a22e6e998755c657873aa1b212ea59a.zip
Removed stray X509_free from ssl.c
Signed-off-by: Adriaan de Jong <dejong@fox-it.com> Acked-by: James Yonan <james@openvpn.net> Signed-off-by: David Sommerseth <davids@redhat.com>
Diffstat (limited to 'ssl_openssl.c')
-rw-r--r--ssl_openssl.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/ssl_openssl.c b/ssl_openssl.c
index f36b319..ebea636 100644
--- a/ssl_openssl.c
+++ b/ssl_openssl.c
@@ -431,6 +431,12 @@ tls_ctx_load_cert_file (struct tls_root_ctx *ctx, const char *cert_file,
}
}
+void
+tls_ctx_free_cert_file (X509 *x509)
+{
+ X509_free(x509);
+}
+
#if ENABLE_INLINE_FILES
static int
use_inline_PrivateKey_file (SSL_CTX *ctx, const char *key_string)