From 4646cb7ec9867490739d0174e3bd10c4a0d0f10b Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Sun, 17 Feb 2002 19:41:34 +0000 Subject: [PATCH] still one isxdigit() -> i_isxdigit() git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2510 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/core/network.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/network.c b/src/core/network.c index 6be87113..882e94f2 100644 --- a/src/core/network.c +++ b/src/core/network.c @@ -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++; }