1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-29 04:45:57 -04:00

still one isxdigit() -> i_isxdigit()

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2510 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-02-17 19:41:34 +00:00 committed by cras
parent a543f63307
commit 4646cb7ec9

View File

@ -590,7 +590,7 @@ int is_ipv4_address(const char *host)
int is_ipv6_address(const char *host)
{
while (*host != '\0') {
if (*host != ':' && !isxdigit(*host))
if (*host != ':' && !i_isxdigit(*host))
return 0;
host++;
}