about summary refs log tree commit diff stats
path: root/src/xmpp/iq.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2013-03-17 21:46:49 +0000
committerJames Booth <boothj5@gmail.com>2013-03-17 21:46:49 +0000
commite7202120cbde8e33d6b21b6cde5ee4278da4e524 (patch)
treebeb429adc95b7ee5c31e9766a8a2e71b961ef210 /src/xmpp/iq.c
parente2bc9bde749a5a0b48ffc2a331a9bf4cfa10af65 (diff)
downloadprofani-tty-e7202120cbde8e33d6b21b6cde5ee4278da4e524.tar.gz
Renamed ID attribute for capabilities disco info request
Diffstat (limited to 'src/xmpp/iq.c')
-rw-r--r--src/xmpp/iq.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xmpp/iq.c b/src/xmpp/iq.c
index 4cbcf374..9976f5a7 100644
--- a/src/xmpp/iq.c
+++ b/src/xmpp/iq.c
@@ -445,7 +445,7 @@ _iq_handle_discoinfo_result(xmpp_conn_t * const conn, xmpp_stanza_t * const stan
             g_slist_free_full(features, free);
             g_slist_free_full(identities, (GDestroyNotify)_identity_destroy);
         }
-    } else if ((id != NULL) && (g_str_has_prefix(id, "disco"))) {
+    } else if ((id != NULL) && (g_str_has_prefix(id, "capsreq"))) {
         log_debug("Response to query: %s", id);
         xmpp_stanza_t *query = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_QUERY);
         char *node = xmpp_stanza_get_attribute(query, STANZA_ATTR_NODE);
@@ -456,7 +456,7 @@ _iq_handle_discoinfo_result(xmpp_conn_t * const conn, xmpp_stanza_t * const stan
         char *caps_key = NULL;
 
         // xep-0115
-        if (g_strcmp0(id, "disco") == 0) {
+        if (g_strcmp0(id, "capsreq") == 0) {
             log_debug("xep-0115 supported capabilities");
             caps_key = strdup(node);
 
@@ -480,7 +480,7 @@ _iq_handle_discoinfo_result(xmpp_conn_t * const conn, xmpp_stanza_t * const stan
         // non supported hash, or legacy caps
         } else {
             log_debug("Unsupported hash, or legacy capabilities");
-            caps_key = strdup(id + 6);
+            caps_key = strdup(id + 8);
             log_debug("Caps key: %s", caps_key);
         }