ratox

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

commit 3fcf991243ecfed7ba72aea6f079a7e7c229cbee
parent 9220278996070338658410af496cdcb969c0d9c6
Author: sin <sin@2f30.org>
Date:   Tue, 30 Sep 2014 15:42:29 +0100

Be consistent in how we default to the "Anonymous" name

Diffstat:
Mratox.c | 8+++++---
1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/ratox.c b/ratox.c @@ -290,10 +290,12 @@ cbconnstatus(Tox *m, int32_t frnum, uint8_t status, void *udata) eprintf("Failed to get name for friend number %ld\n", (long)frnum); - name[r] = '\0'; + if (r == 0) + snprintf(name, sizeof(name), "Anonymous"); + else + name[r] = '\0'; - printout(": %s > %s\n", r == 0 ? (uint8_t *)"Anonymous" : name, - status == 0 ? "Offline" : "Online"); + printout(": %s > %s\n", name, status == 0 ? "Offline" : "Online"); TAILQ_FOREACH(f, &friendhead, entry) { if (f->num == frnum) {