Skip to content
Snippets Groups Projects
Commit e4e6e3e8 authored by rswindell's avatar rswindell
Browse files

Another stupid MSVC ctype macro assertion avoidance typecast.

parent 50689291
No related branches found
No related tags found
No related merge requests found
......@@ -252,7 +252,7 @@ u_long resolve_ip(char *addr)
return((u_long)INADDR_NONE);
for(p=addr;*p;p++)
if(*p!='.' && !isdigit(*p))
if(*p!='.' && !isdigit((uchar)*p))
break;
if(!(*p))
return(inet_addr(addr));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment