tRemove converting nospam values because toxcore does that for us now. - ratox - FIFO based tox client
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit cb904cf59e4c1650ce5109850822ce658b6ac439
 (DIR) parent eaf22dff1e5acc5eed22d18f3264e804e7b7262b
 (HTM) 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:
         M ratox.c                             |       6 ++----
       
       1 file changed, 2 insertions(+), 4 deletions(-)
       ---
 (DIR) diff --git a/ratox.c b/ratox.c
       t@@ -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>
       t@@ -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;
        }
       t@@ -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);