From: Adriaan de Jong Date: Wed, 17 Oct 2012 09:39:25 +0000 (+0200) Subject: Fixed a bug where PolarSSL gave an error when using an inline file tag. X-Git-Tag: v2.3_rc1~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a4b99628d19d6130a4f53e0ed84d9d0b2fd28dc0;p=thirdparty%2Fopenvpn.git Fixed a bug where PolarSSL gave an error when using an inline file tag. Signed-off-by: Adriaan de Jong Acked-by: David Sommerseth Message-Id: 1350466765-23301-1-git-send-email-dejong@fox-it.com Signed-off-by: David Sommerseth (cherry picked from commit 2ebbe4c0b4f0f0b15b4c32180e906a545446c376) --- diff --git a/src/openvpn/ssl_polarssl.c b/src/openvpn/ssl_polarssl.c index 6995958b9..12318b333 100644 --- a/src/openvpn/ssl_polarssl.c +++ b/src/openvpn/ssl_polarssl.c @@ -338,7 +338,7 @@ void tls_ctx_load_ca (struct tls_root_ctx *ctx, const char *ca_file, if (ca_file && !strcmp (ca_file, INLINE_FILE_TAG) && ca_file_inline) { - if (0 != x509parse_crt(ctx->ca_chain, ca_file_inline, strlen(ca_file_inline))); + if (0 != x509parse_crt(ctx->ca_chain, ca_file_inline, strlen(ca_file_inline))) msg (M_FATAL, "Cannot load inline CA certificates"); } else