From c9bdaf315f88069b4fd7349d5ff335c5b53dfdae Mon Sep 17 00:00:00 2001 From: pranomostro Date: Sun, 5 Mar 2017 01:40:32 +0100 Subject: Fix obtaining of friend status while creating friend. --- ratox.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ratox.c') diff --git a/ratox.c b/ratox.c index d056919..d767630 100644 --- a/ratox.c +++ b/ratox.c @@ -1561,11 +1561,12 @@ friendcreate(uint32_t frnum) tox_friend_get_connection_status(tox, frnum, NULL)); /* Dump status */ - i = tox_friend_get_status_message(tox, frnum, status, NULL); + i = tox_friend_get_status_message_size(tox, frnum, NULL); if (i == SIZE_MAX) { weprintf(": %s : Status : Failed to get\n", f->name); i = 0; } + tox_friend_get_status_message(tox, frnum, status, NULL); status[i] = '\0'; ftruncate(f->fd[FSTATUS], 0); dprintf(f->fd[FSTATUS], "%s\n", status); -- cgit v1.2.3