aboutsummaryrefslogtreecommitdiff
path: root/tests/server/sws.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2006-10-23 19:14:54 +0000
committerYang Tse <yangsita@gmail.com>2006-10-23 19:14:54 +0000
commit4ec931615588ea90c5690cf950c2fec468f7c237 (patch)
tree8b261ff8188f42b9096837ade70a4bbf8d018f07 /tests/server/sws.c
parentef769500d41fbce85f015c33a460046e3b51ac7d (diff)
Replace is*() macros with our own IS*() ones.
Diffstat (limited to 'tests/server/sws.c')
-rw-r--r--tests/server/sws.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/server/sws.c b/tests/server/sws.c
index 7f9091f4a..fa0561b43 100644
--- a/tests/server/sws.c
+++ b/tests/server/sws.c
@@ -242,7 +242,7 @@ int ProcessRequest(struct httprequest *req)
ptr++; /* skip the slash */
/* skip all non-numericals following the slash */
- while(*ptr && !isdigit((int)*ptr))
+ while(*ptr && !ISDIGIT(*ptr))
ptr++;
req->testno = strtol(ptr, &ptr, 10);