URI: 
       tUse strtoul() instead of strtol() - ratox - FIFO based tox client
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 30eb05ef9c7a1a8bea4bc1c88abd154d11421db2
   DIR parent 07b2fa713191fd705094f05d4aba21794a012f3f
  HTML Author: sin <sin@2f30.org>
       Date:   Wed,  1 Oct 2014 19:08:28 +0100
       
       Use strtoul() instead of strtol()
       
       Diffstat:
         M ratox.c                             |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/ratox.c b/ratox.c
       t@@ -1345,7 +1345,7 @@ setnospam(void *data)
        {
                uint8_t nospam[2 * sizeof(uint32_t) + 1];
                uint8_t address[TOX_FRIEND_ADDRESS_SIZE];
       -        int32_t nsval;
       +        uint32_t nsval;
                ssize_t n, i;
        
                n = fiforead(gslots[NOSPAM].dirfd, &gslots[NOSPAM].fd[IN], gfiles[IN],
       t@@ -1363,7 +1363,7 @@ setnospam(void *data)
                        }
                }
        
       -        nsval = strtol((char *)nospam, NULL, 16);
       +        nsval = strtoul((char *)nospam, NULL, 16);
                tox_set_nospam(tox, nsval);
                datasave();
                printout("Nospam > %08X\n", nsval);