tDon't use magic numbers :) - ratox - FIFO based tox client
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit b35b99442c64271effc44e65a9c422042ab5c1b2
 (DIR) parent f914348f72eaac50d39f728a641d05ef1fb1150f
 (HTM) Author: sin <sin@2f30.org>
       Date:   Wed,  1 Oct 2014 17:09:41 +0100
       
       Don't use magic numbers :)
       
       Diffstat:
         M ratox.c                             |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/ratox.c b/ratox.c
       t@@ -1354,7 +1354,7 @@ setnospam(void *data)
                nospam[n] = '\0';
        
                for (i = 0; i < n - 1; i++) {
       -                if (nospam[i] < 48 || (nospam[i] > 57 && nospam[i] < 65) || nospam[i] > 70) {
       +                if (nospam[i] < '0' || (nospam[i] > '9' && nospam[i] < 'A') || nospam[i] > 'F') {
                                dprintf(gslots[NOSPAM].fd[ERR], "Input contains invalid characters ![0-9, A-F]\n");
                                goto end;
                        }