From b35b99442c64271effc44e65a9c422042ab5c1b2 Mon Sep 17 00:00:00 2001 From: sin Date: Wed, 1 Oct 2014 17:09:41 +0100 Subject: Don't use magic numbers :) --- ratox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ratox.c') diff --git a/ratox.c b/ratox.c index 48c6bc5..b0d7dc7 100644 --- a/ratox.c +++ b/ratox.c @@ -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; } -- cgit v1.2.3