diff options
author | Yang Tse <yangsita@gmail.com> | 2006-10-23 19:14:54 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2006-10-23 19:14:54 +0000 |
commit | 4ec931615588ea90c5690cf950c2fec468f7c237 (patch) | |
tree | 8b261ff8188f42b9096837ade70a4bbf8d018f07 /tests/server/tftpd.c | |
parent | ef769500d41fbce85f015c33a460046e3b51ac7d (diff) |
Replace is*() macros with our own IS*() ones.
Diffstat (limited to 'tests/server/tftpd.c')
-rw-r--r-- | tests/server/tftpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/server/tftpd.c b/tests/server/tftpd.c index c234dbf19..7120c152b 100644 --- a/tests/server/tftpd.c +++ b/tests/server/tftpd.c @@ -668,7 +668,7 @@ static int validate_access(struct testcase *test, ptr++; /* skip the slash */ /* skip all non-numericals following the slash */ - while(*ptr && !isdigit((int)*ptr)) + while(*ptr && !ISDIGIT(*ptr)) ptr++; /* get the number */ |