SSL_LIBRARY_VERSION_TLS_1_3 is a recent addition - yay buildbots release-2.x.y

Wed, 05 Nov 2014 14:01:46 -0500

author
Daniel Atallah <datallah@pidgin.im>
date
Wed, 05 Nov 2014 14:01:46 -0500
branch
release-2.x.y
changeset 36231
0223e88d7858
parent 36228
1cdc641d433e
child 36232
9ba4a2b8ecd1
child 36233
2d081c7c20eb

SSL_LIBRARY_VERSION_TLS_1_3 is a recent addition - yay buildbots

libpurple/plugins/ssl/nss-prefs.c file | annotate | diff | comparison | revisions
--- a/libpurple/plugins/ssl/nss-prefs.c	Wed Nov 05 13:13:37 2014 -0500
+++ b/libpurple/plugins/ssl/nss-prefs.c	Wed Nov 05 14:01:46 2014 -0500
@@ -340,9 +340,11 @@
 				case SSL_LIBRARY_VERSION_TLS_1_2:
 					ver = g_strdup(_("TLS 1.2"));
 					break;
+#ifdef SSL_LIBRARY_VERSION_TLS_1_3
 				case SSL_LIBRARY_VERSION_TLS_1_3:
 					ver = g_strdup(_("TLS 1.3"));
 					break;
+#endif
 				default:
 					ver = g_strdup_printf("0x%04hx", tmp_version);
 			}

mercurial