aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/bee_chat.c
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/bee_chat.c')
-rw-r--r--protocols/bee_chat.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/protocols/bee_chat.c b/protocols/bee_chat.c
index 76ed7f85..c5f2b262 100644
--- a/protocols/bee_chat.c
+++ b/protocols/bee_chat.c
@@ -274,7 +274,13 @@ void imcb_chat_invite(struct im_connection *ic, const char *name, const char *wh
}
}
-void bee_chat_list_finish(struct im_connection *ic)
+void imcb_chat_list_finish(struct im_connection *ic)
{
cmd_chat_list_finish(ic);
}
+
+void bee_chat_list_finish(struct im_connection *ic)
+{
+ imcb_log(ic, "Warning: using deprecated bee_chat_list_finish. This will be removed in the stable release.");
+ imcb_chat_list_finish(ic);
+}