diff -r f76c1aa92c07 -r 035f00c4fd87 libpurple/protocols/jabber/disco.c
--- a/libpurple/protocols/jabber/disco.c Thu Mar 09 21:04:44 2017 -0600
+++ b/libpurple/protocols/jabber/disco.c Thu Mar 23 19:19:01 2017 +0300
@@ -123,7 +123,7 @@
if(node)
xmlnode_set_attrib(query, "node", node);
- if(!node || g_str_equal(node, node_uri)) {
+ if(!node || purple_strequal(node, node_uri)) {
GList *features, *identities;
for(identities = jabber_identities; identities; identities = identities->next) {
JabberIdentity *ident = (JabberIdentity*)identities->data;
@@ -143,7 +143,7 @@
}
}
#ifdef USE_VV
- } else if (g_str_equal(node, CAPS0115_NODE "#" "voice-v1")) {
+ } else if (purple_strequal(node, CAPS0115_NODE "#" "voice-v1")) {
/*
* HUGE HACK! We advertise this ext (see jabber_presence_create_js
* where we add to the ) for the Google Talk
@@ -155,7 +155,7 @@
*/
xmlnode *feature = xmlnode_new_child(query, "feature");
xmlnode_set_attrib(feature, "var", NS_GOOGLE_VOICE);
- } else if (g_str_equal(node, CAPS0115_NODE "#" "video-v1")) {
+ } else if (purple_strequal(node, CAPS0115_NODE "#" "video-v1")) {
/*
* HUGE HACK! We advertise this ext (see jabber_presence_create_js
* where we add to the ) for the Google Talk
@@ -167,7 +167,7 @@
*/
xmlnode *feature = xmlnode_new_child(query, "feature");
xmlnode_set_attrib(feature, "var", NS_GOOGLE_VIDEO);
- } else if (g_str_equal(node, CAPS0115_NODE "#" "camera-v1")) {
+ } else if (purple_strequal(node, CAPS0115_NODE "#" "camera-v1")) {
/*
* HUGE HACK! We advertise this ext (see jabber_presence_create_js
* where we add to the ) for the Google Talk