openbsd-ports/net/pidgin/patches/patch-pidgin_gtkdialogs_c
sthen 5b60b9fcbb update to Pidgin 2.10.2, from Brad, also tested by rfreeman@
CVE-2011-4939 null pointer deref with certain types of nickname changes in XMPP
CVE-2012-1178 MSN crash due to not verifying UTF8 encoding
2012-03-15 21:45:06 +00:00

17 lines
571 B
Plaintext

$OpenBSD: patch-pidgin_gtkdialogs_c,v 1.25 2012/03/15 21:45:07 sthen Exp $
--- pidgin/gtkdialogs.c.orig Wed Mar 14 01:28:02 2012
+++ pidgin/gtkdialogs.c Wed Mar 14 23:51:26 2012
@@ -618,6 +618,12 @@ g_string_append(str, "<br/> <b>Library Support</b><br
g_string_append(str, " <b>GtkSpell:</b> Disabled<br/>");
#endif
+#ifdef HAVE_OPENSSL
+ g_string_append(str, " <b>OpenSSL:</b> Enabled<br/>");
+#else
+ g_string_append(str, " <b>OpenSSL:</b> Disabled<br/>");
+#endif
+
#ifdef HAVE_GNUTLS
g_string_append(str, " <b>GnuTLS:</b> Enabled<br/>");
#else