diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2015-09-29 20:14:59 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2015-09-29 20:15:54 +0100 |
commit | 11a04b5a7a8b9774d14743ae5a30c96de90cb5c8 (patch) | |
tree | 85ca0d0eea7659145b5434b778d299778f0cdb00 | |
parent | d36254f24a6127853696b6d40ace37f07e6660f9 (diff) |
Fix gnutls library version check, for system certs feature. Bug 1691
-rw-r--r-- | src/src/tls-gnu.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |