about summary refs log tree commit diff
path: root/resolv
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2009-04-07 16:13:15 +0000
committerUlrich Drepper <drepper@redhat.com>2009-04-07 16:13:15 +0000
commitc6807d38a11d67d6fc8a49040ce29dfe84ffe4ed (patch)
tree6c3cf1fed42568bc51871a4ae644c6c7452d5565 /resolv
parent481f9ecae0fcab13f37d4809038cd5059ae6ad76 (diff)
downloadglibc-c6807d38a11d67d6fc8a49040ce29dfe84ffe4ed.tar.gz
glibc-c6807d38a11d67d6fc8a49040ce29dfe84ffe4ed.tar.xz
glibc-c6807d38a11d67d6fc8a49040ce29dfe84ffe4ed.zip
* resolv/res_hconf.c (_res_hconf_trim_domain): Use strcasecmp
	instead of __strcasecmp.
	* resolv/nss_dns/dns-host.c (getanswer_r): Likewise.
Diffstat (limited to 'resolv')
-rw-r--r--resolv/nss_dns/dns-host.c2
-rw-r--r--resolv/res_hconf.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/resolv/nss_dns/dns-host.c b/resolv/nss_dns/dns-host.c
index a9462ae97a..62e67e8b01 100644
--- a/resolv/nss_dns/dns-host.c
+++ b/resolv/nss_dns/dns-host.c
@@ -824,7 +824,7 @@ getanswer_r (const querybuf *answer, int anslen, const char *qname, int qtype,
       switch (type)
 	{
 	case T_PTR:
-	  if (__builtin_expect (__strcasecmp (tname, bp) != 0, 0))
+	  if (__builtin_expect (strcasecmp (tname, bp) != 0, 0))
 	    {
 	      syslog (LOG_NOTICE | LOG_AUTH, AskedForGot, qname, bp);
 	      cp += n;
diff --git a/resolv/res_hconf.c b/resolv/res_hconf.c
index 25f7397927..a98dfda88a 100644
--- a/resolv/res_hconf.c
+++ b/resolv/res_hconf.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1993, 1995-2006, 2007 Free Software Foundation, Inc.
+/* Copyright (C) 1993, 1995-2006, 2007, 2009 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by David Mosberger (davidm@azstarnet.com).
 
@@ -518,7 +518,7 @@ _res_hconf_trim_domain (char *hostname)
 
       trim_len = strlen (trim);
       if (hostname_len > trim_len
-	  && __strcasecmp (&hostname[hostname_len - trim_len], trim) == 0)
+	  && strcasecmp (&hostname[hostname_len - trim_len], trim) == 0)
 	{
 	  hostname[hostname_len - trim_len] = '\0';
 	  break;