tActually fill the status message buffer when creating friends - ratox - FIFO based tox client
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 93c3f6321138be7b2eaa9eb9920df7cd8425ca73
 (DIR) parent d0c3a52050c8fdab224b612f4185a40d4d87bd04
 (HTM) Author: sin <sin@2f30.org>
       Date:   Thu,  2 Oct 2014 21:06:45 +0100
       
       Actually fill the status message buffer when creating friends
       
       Diffstat:
         M ratox.c                             |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/ratox.c b/ratox.c
       t@@ -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';