diff options
author | James Booth <boothj5@gmail.com> | 2015-11-01 21:37:09 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-11-01 21:37:09 +0000 |
commit | 21d560f068590023ac9f5ae9301c5737a4614205 (patch) | |
tree | 49f47d69cea75b2301f3799ebd5171f2b6ea1ef9 /src/xmpp | |
parent | b26e6060615cfff42b56ef5e40c178a2e9502368 (diff) | |
download | profani-tty-21d560f068590023ac9f5ae9301c5737a4614205.tar.gz |
Renamed ui_handle_room_affiliation_list_error -> mucwin_affiliation_list_error
Diffstat (limited to 'src/xmpp')
-rw-r--r-- | src/xmpp/iq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmpp/iq.c b/src/xmpp/iq.c index 4f09f565..3f70587e 100644 --- a/src/xmpp/iq.c +++ b/src/xmpp/iq.c @@ -1342,7 +1342,7 @@ _room_affiliation_list_result_handler(xmpp_conn_t *const conn, xmpp_stanza_t *co 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", affiliation, from, error_message); - ui_handle_room_affiliation_list_error(from, affiliation, error_message); + mucwin_affiliation_list_error(from, affiliation, error_message); free(error_message); free(affiliation); return 0; |