ratox

FIFO based tox client
git clone git://git.2f30.org/ratox
Log | Files | Refs | README | LICENSE

commit 93c3f6321138be7b2eaa9eb9920df7cd8425ca73
parent d0c3a52050c8fdab224b612f4185a40d4d87bd04
Author: sin <sin@2f30.org>
Date:   Thu,  2 Oct 2014 21:06:45 +0100

Actually fill the status message buffer when creating friends

Diffstat:
Mratox.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ratox.c b/ratox.c @@ -1203,7 +1203,7 @@ friendcreate(int32_t frnum) dprintf(f->fd[FONLINE], "%d\n", tox_get_friend_connection_status(tox, frnum)); - r = tox_get_status_message_size(tox, frnum); + r = tox_get_status_message(tox, frnum, status, sizeof(status) - 1); if (r > sizeof(status) - 1) r = sizeof(status) - 1; status[r] = '\0';