e36ebe3043
CVE-2012-3374 Fix a buffer overflow vulnerability when parsing incoming messagescontaining inline images. from brad (MAINTAINER)
17 lines
572 B
Plaintext
17 lines
572 B
Plaintext
$OpenBSD: patch-pidgin_gtkdialogs_c,v 1.26 2012/07/18 13:31:49 jasper Exp $
|
|
--- pidgin/gtkdialogs.c.orig Tue Jul 3 01:03:50 2012
|
|
+++ pidgin/gtkdialogs.c Sat Jul 14 17:37:30 2012
|
|
@@ -620,6 +620,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
|