mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05: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:
parent
a543f63307
commit
4646cb7ec9
@ -590,7 +590,7 @@ int is_ipv4_address(const char *host)
|
|||||||
int is_ipv6_address(const char *host)
|
int is_ipv6_address(const char *host)
|
||||||
{
|
{
|
||||||
while (*host != '\0') {
|
while (*host != '\0') {
|
||||||
if (*host != ':' && !isxdigit(*host))
|
if (*host != ':' && !i_isxdigit(*host))
|
||||||
return 0;
|
return 0;
|
||||||
host++;
|
host++;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user