I guess there are NSS versions that support the SSL_VersionRange stuff, but not TLS 1.2 - I thought they came in at the same time. release-2.x.y

Fri, 07 Nov 2014 12:16:35 -0500

author
Daniel Atallah <datallah@pidgin.im>
date
Fri, 07 Nov 2014 12:16:35 -0500
branch
release-2.x.y
changeset 36235
6f5e35bda0c9
parent 36233
2d081c7c20eb
child 36236
3b264e3c6710
child 36248
f6a91e6c77a4

I guess there are NSS versions that support the SSL_VersionRange stuff, but not TLS 1.2 - I thought they came in at the same time.

libpurple/plugins/ssl/nss-prefs.c file | annotate | diff | comparison | revisions
--- a/libpurple/plugins/ssl/nss-prefs.c	Thu Nov 06 10:45:12 2014 +0100
+++ b/libpurple/plugins/ssl/nss-prefs.c	Fri Nov 07 12:16:35 2014 -0500
@@ -337,9 +337,11 @@
 				case SSL_LIBRARY_VERSION_TLS_1_1:
 					ver = g_strdup(_("TLS 1.1"));
 					break;
+#ifdef SSL_LIBRARY_VERSION_TLS_1_2
 				case SSL_LIBRARY_VERSION_TLS_1_2:
 					ver = g_strdup(_("TLS 1.2"));
 					break;
+#endif
 #ifdef SSL_LIBRARY_VERSION_TLS_1_3
 				case SSL_LIBRARY_VERSION_TLS_1_3:
 					ver = g_strdup(_("TLS 1.3"));

mercurial