diff options
author | Timo Sirainen <cras@irssi.org> | 2002-02-17 19:41:34 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2002-02-17 19:41:34 +0000 |
commit | 4646cb7ec9867490739d0174e3bd10c4a0d0f10b (patch) | |
tree | a85fb13410832815f41330b2d8864f13fa6cbff3 /src | |
parent | a543f6330762477e3fb25c38d73fec09ec035ce1 (diff) | |
download | irssi-4646cb7ec9867490739d0174e3bd10c4a0d0f10b.zip |
still one isxdigit() -> i_isxdigit()
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2510 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src')
-rw-r--r-- | src/core/network.c | 2 |
1 files changed, 1 insertions, 1 deletions
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++; } |