From 11a04b5a7a8b9774d14743ae5a30c96de90cb5c8 Mon Sep 17 00:00:00 2001 From: Jeremy Harris Date: Tue, 29 Sep 2015 20:14:59 +0100 Subject: [PATCH] Fix gnutls library version check, for system certs feature. Bug 1691 --- src/src/tls-gnu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/src/tls-gnu.c b/src/src/tls-gnu.c index fe180946b..846a0f6b1 100644 --- a/src/src/tls-gnu.c +++ b/src/src/tls-gnu.c @@ -56,7 +56,7 @@ require current GnuTLS, then we'll drop support for the ancient libraries). #else # undef SUPPORT_CA_DIR #endif -#if GNUTLS_VERSION_NUMBER >= 0x030314 +#if GNUTLS_VERSION_NUMBER >= 0x030014 # define SUPPORT_SYSDEFAULT_CABUNDLE #endif -- 2.30.2