From 4ec931615588ea90c5690cf950c2fec468f7c237 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Mon, 23 Oct 2006 19:14:54 +0000 Subject: Replace is*() macros with our own IS*() ones. --- tests/server/sws.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/server/sws.c') 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); -- cgit v1.2.3