tFix off-by-one - ratox - FIFO based tox client
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 34171f70ed59100b5371ba81341da66dc186782b
 (DIR) parent 27f88d44c47bd0fc2c6aa07e8c9825f6013495d6
 (HTM) Author: sin <sin@2f30.org>
       Date:   Mon, 15 Sep 2014 15:21:02 +0100
       
       Fix off-by-one
       
       Diffstat:
         M ratatox.c                           |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/ratatox.c b/ratatox.c
       t@@ -518,7 +518,7 @@ friendcreate(int32_t fid)
                blabla(f, "online", "w",
                       tox_get_friend_connection_status(tox, fid) == 0 ? "0\n" : "1\n");
                r = tox_get_status_message_size(tox, fid);
       -        if (r > TOX_MAX_STATUSMESSAGE_LENGTH + 1)
       +        if (r > TOX_MAX_STATUSMESSAGE_LENGTH)
                        r = TOX_MAX_STATUSMESSAGE_LENGTH;
                statusmsg[r] = '\0';
                blabla(f, "statusmsg", "w", "%s\n", statusmsg);