summaryrefslogtreecommitdiff
path: root/support/logresolve.c
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2000-11-02 02:12:34 +0000
committerJeff Trawick <trawick@apache.org>2000-11-02 02:12:34 +0000
commit93bdf51d342d7b1caa6c8dcd1e0de6432266486e (patch)
tree7e17a468a7ef3838f6a1c0b694a2c794e83de229 /support/logresolve.c
parent087dc39751b4e043fd309ddfb91932a4ca63b124 (diff)
downloadhttpd-93bdf51d342d7b1caa6c8dcd1e0de6432266486e.tar.gz
Get rid of some warnings on Solaris 8 by using APR's ctype macros:
logresolve.c: In function `main': logresolve.c:327: warning: subscript has type `char' ab.c: In function `main': ab.c:1074: warning: subscript has type `char' ab.c:1087: warning: subscript has type `char' git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86793 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support/logresolve.c')
-rw-r--r--support/logresolve.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/logresolve.c b/support/logresolve.c
index 250fd5cb47..43fa47a549 100644
--- a/support/logresolve.c
+++ b/support/logresolve.c
@@ -324,7 +324,7 @@ int main (int argc, char *argv[])
if (line[0] == '\0')
continue;
entries++;
- if (!isdigit(line[0])) { /* short cut */
+ if (!apr_isdigit(line[0])) { /* short cut */
puts(line);
withname++;
continue;