ratox

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

commit cb904cf59e4c1650ce5109850822ce658b6ac439
parent eaf22dff1e5acc5eed22d18f3264e804e7b7262b
Author: pranomostro <pranomestro@gmail.com>
Date:   Mon, 28 Nov 2016 15:36:09 +0100

Remove converting nospam values because toxcore does that for us now.

Diffstat:
Mratox.c | 6++----
1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/ratox.c b/ratox.c @@ -3,8 +3,6 @@ #include <sys/stat.h> #include <sys/types.h> -#include <arpa/inet.h> - #include <ctype.h> #include <dirent.h> #include <errno.h> @@ -1119,7 +1117,7 @@ localinit(void) /* Dump Nospam */ ftruncate(gslots[NOSPAM].fd[OUT], 0); - dprintf(gslots[NOSPAM].fd[OUT], "%08X\n", ntohl(tox_self_get_nospam(tox))); + dprintf(gslots[NOSPAM].fd[OUT], "%08X\n", tox_self_get_nospam(tox)); return 0; } @@ -1527,7 +1525,7 @@ setnospam(void *data) } nsval = strtoul((char *)nospam, NULL, 16); - tox_self_set_nospam(tox, htonl(nsval)); + tox_self_set_nospam(tox, nsval); datasave(); logmsg("Nospam > %08X\n", nsval); ftruncate(gslots[NOSPAM].fd[OUT], 0);