From: Paul Howarth Date: Tue, 4 Dec 2018 18:43:51 +0000 (+0000) Subject: nss: Fix compatibility with nss versions 3.14 to 3.15 X-Git-Tag: curl-7_63_0~27 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8ad9e5915a95258267f2af463559ded134e8e643;p=curl nss: Fix compatibility with nss versions 3.14 to 3.15 --- diff --git a/lib/vtls/nss.c b/lib/vtls/nss.c index 79437a284..08ee1aaaf 100644 --- a/lib/vtls/nss.c +++ b/lib/vtls/nss.c @@ -1808,8 +1808,12 @@ static CURLcode nss_setup_connect(struct connectdata *conn, int sockindex) SSL_LIBRARY_VERSION_TLS_1_0, /* min */ #ifdef SSL_LIBRARY_VERSION_TLS_1_3 SSL_LIBRARY_VERSION_TLS_1_3 /* max */ -#else +#elif defined SSL_LIBRARY_VERSION_TLS_1_2 SSL_LIBRARY_VERSION_TLS_1_2 +#elif defined SSL_LIBRARY_VERSION_TLS_1_1 + SSL_LIBRARY_VERSION_TLS_1_1 +#else + SSL_LIBRARY_VERSION_TLS_1_0 #endif };