Unverified Commit 8ad9e591 authored by Paul Howarth's avatar Paul Howarth Committed by Daniel Stenberg
Browse files

nss: Fix compatibility with nss versions 3.14 to 3.15

parent 71a1442e
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -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
  };