about summary refs log tree commit diff stats
path: root/src/xmpp
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-01-05 21:17:07 +0000
committerJames Booth <boothj5@gmail.com>2014-01-05 21:17:07 +0000
commitb14d5707cb4941489fa57236239ce08a18c81a7a (patch)
treee2696dcc505c666580d7e2a872b763679bccbf96 /src/xmpp
parent460a42c7c979d1eaed3eeb7210ff1178e04417d8 (diff)
downloadprofani-tty-b14d5707cb4941489fa57236239ce08a18c81a7a.tar.gz
Moved handle_disco_info to server_events
Diffstat (limited to 'src/xmpp')
-rw-r--r--src/xmpp/iq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmpp/iq.c b/src/xmpp/iq.c
index d3388cdd..8d42ede3 100644
--- a/src/xmpp/iq.c
+++ b/src/xmpp/iq.c
@@ -403,7 +403,7 @@ _iq_handle_discoinfo_result(xmpp_conn_t * const conn, xmpp_stanza_t * const stan
                 child = xmpp_stanza_get_next(child);
             }
 
-            prof_handle_disco_info(from, identities, features);
+            handle_disco_info(from, identities, features);
             g_slist_free_full(features, free);
             g_slist_free_full(identities, (GDestroyNotify)_identity_destroy);
         }