diff options
author | dequis <dx@dxzone.com.ar> | 2015-08-02 16:21:56 -0300 |
---|---|---|
committer | dequis <dx@dxzone.com.ar> | 2015-08-08 01:29:49 -0300 |
commit | 6b56512c9f8c38b71195f75b414f79f73ecbb701 (patch) | |
tree | 770cdefa69e20152a198f1ecda2e3dda5e78620f /protocols/bee_chat.c | |
parent | 4850065cf2518aa26b22b5609bda2459ac22f403 (diff) |
Pass 'reason' values around in imcb_chat_remove_buddy/chat_remove_user
Diffstat (limited to 'protocols/bee_chat.c')
-rw-r--r-- | protocols/bee_chat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/bee_chat.c b/protocols/bee_chat.c index be193405..6ea86c3a 100644 --- a/protocols/bee_chat.c +++ b/protocols/bee_chat.c @@ -229,7 +229,7 @@ void imcb_chat_remove_buddy(struct groupchat *c, const char *handle, const char } if (bee->ui->chat_remove_user && bu) { - bee->ui->chat_remove_user(bee, c, bu); + bee->ui->chat_remove_user(bee, c, bu, reason); } } |