summaryrefslogtreecommitdiff
path: root/libc/inet/resolv.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-12-06 14:53:37 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-12-06 14:53:37 +0000
commit92a148d641dced0bdb03bc9e6166356499e49f80 (patch)
treec3ac0e234053bd85b9d4dbbd2d50d84b227a47d0 /libc/inet/resolv.c
parent0c091da2f8c2745c97d0069cfa4acae169d57b41 (diff)
Make use internal str*casecmp/wcscoll
Diffstat (limited to 'libc/inet/resolv.c')
-rw-r--r--libc/inet/resolv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/inet/resolv.c b/libc/inet/resolv.c
index a6dc549b8..d2f90a270 100644
--- a/libc/inet/resolv.c
+++ b/libc/inet/resolv.c
@@ -1535,7 +1535,7 @@ int attribute_hidden __read_etc_hosts_r(FILE * fp, const char * name, int type,
} else {
/* GET_HOSTS_BYNAME */
for (i = 1; i < aliases; i++)
- if (strcasecmp(name, alias[i]) == 0)
+ if (__strcasecmp(name, alias[i]) == 0)
break;
if (i >= aliases)
continue;