mirror of
git://slackware.nl/current.git
synced 2024-12-31 10:28:29 +01:00
7d2523ede3
patches/packages/pidgin-2.14.9-x86_64-1_slack15.0.txz: Upgraded. Mitigate the potential for a man in the middle attack via DNS spoofing by removing the code that supported the _xmppconnect DNS TXT record. For more information, see: https://www.pidgin.im/about/security/advisories/cve-2022-26491/ https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-26491 (* Security fix *)
17 lines
578 B
Diff
17 lines
578 B
Diff
Since glib-2.32, this is a common error:
|
|
In file included from rsa_nss.c:27:0:
|
|
/usr/include/glib-2.0/glib/gmain.h:21:2: error: #error "Only <glib.h> can be included directly."
|
|
Let's fix it :)
|
|
|
|
diff -Nur pidgin-encryption-3.1.orig/rsa_nss.c pidgin-encryption-3.1/rsa_nss.c
|
|
--- pidgin-encryption-3.1.orig/rsa_nss.c 2010-04-25 20:53:46.000000000 -0500
|
|
+++ pidgin-encryption-3.1/rsa_nss.c 2012-05-01 22:58:18.033710803 -0500
|
|
@@ -24,7 +24,7 @@
|
|
#include <debug.h>
|
|
#include <gtkdialogs.h>
|
|
|
|
-#include "glib/gmain.h"
|
|
+#include <glib.h>
|
|
|
|
#include <string.h>
|
|
#include <assert.h>
|