diff options
author | James Booth <boothj5@gmail.com> | 2014-01-05 21:20:15 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-01-05 21:20:15 +0000 |
commit | d083a5407d7eb002e1cd046538a0150393a87b84 (patch) | |
tree | 546219291a7f20626f294b13dcb4940794aad4e6 /src/xmpp | |
parent | b14d5707cb4941489fa57236239ce08a18c81a7a (diff) | |
download | profani-tty-d083a5407d7eb002e1cd046538a0150393a87b84.tar.gz |
Moved handle_room_list and handle_disco_items to server_events
Diffstat (limited to 'src/xmpp')
-rw-r--r-- | src/xmpp/iq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xmpp/iq.c b/src/xmpp/iq.c index 8d42ede3..3e598c10 100644 --- a/src/xmpp/iq.c +++ b/src/xmpp/iq.c @@ -559,9 +559,9 @@ _iq_handle_discoitems_result(xmpp_conn_t * const conn, xmpp_stanza_t * const sta } if (g_strcmp0(id, "confreq") == 0) { - prof_handle_room_list(items, from); + handle_room_list(items, from); } else if (g_strcmp0(id, "discoitemsreq") == 0) { - prof_handle_disco_items(items, from); + handle_disco_items(items, from); } g_slist_free_full(items, (GDestroyNotify)_item_destroy); |