about summary refs log tree commit diff stats
path: root/src/xmpp
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-11-01 21:48:28 +0000
committerJames Booth <boothj5@gmail.com>2015-11-01 21:48:28 +0000
commit2cc5f17871e2fe3c6c8acdf747b4bfb7acc13566 (patch)
treeda9de94495d5f55bf8bdd18a977e00b18c982cc8 /src/xmpp
parent381bce385fff894e2222fc8271f1090aafa4844d (diff)
downloadprofani-tty-2cc5f17871e2fe3c6c8acdf747b4bfb7acc13566.tar.gz
Renamed ui_handle_room_role_list_error -> mucwin_role_list_error
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 06ef7e10..d5f9c554 100644
--- a/src/xmpp/iq.c
+++ b/src/xmpp/iq.c
@@ -1390,7 +1390,7 @@ _room_role_list_result_handler(xmpp_conn_t *const conn, xmpp_stanza_t *const sta
     if (g_strcmp0(type, STANZA_TYPE_ERROR) == 0) {
         char *error_message = stanza_get_error_message(stanza);
         log_debug("Error retrieving %s list for room %s: %s", role, from, error_message);
-        ui_handle_room_role_list_error(from, role, error_message);
+        mucwin_role_list_error(from, role, error_message);
         free(error_message);
         free(role);
         return 0;