Use proper type cast for ctype macro

This commit is contained in:
Andrey A. Chernov 2007-04-14 14:32:48 +00:00
parent f61bc4ea5e
commit b79aefd3e9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=168721

View File

@ -341,7 +341,7 @@ whois(const char *query, const char *hostname, int flags)
(int)(buf + len - host), host);
} else if (strcmp(hostname, ANICHOST) == 0) {
for (c = 0; c <= len; c++)
buf[c] = tolower((int)buf[c]);
buf[c] = tolower((unsigned char)buf[c]);
for (i = 0; ip_whois[i] != NULL; i++) {
if (strnstr(buf, ip_whois[i], len) !=
NULL) {