Skip to content

Commit

Permalink
* resolv/res_hconf.c (_res_hconf_trim_domain): Use strcasecmp
Browse files Browse the repository at this point in the history
	instead of __strcasecmp.
	* resolv/nss_dns/dns-host.c (getanswer_r): Likewise.
  • Loading branch information
Ulrich Drepper committed Apr 7, 2009
1 parent 481f9ec commit c6807d3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
2009-04-07 Ulrich Drepper <drepper@redhat.com>

* resolv/res_hconf.c (_res_hconf_trim_domain): Use strcasecmp
instead of __strcasecmp.
* resolv/nss_dns/dns-host.c (getanswer_r): Likewise.

* string/stratcliff.c (do_test): Add memchr tests..
* wcsmbs/wcsatcliff.c (MEMCHR): Define.
* sysdeps/x86_64/memchr.S: Fix handling of end of buffer after
Expand Down
2 changes: 1 addition & 1 deletion resolv/nss_dns/dns-host.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions resolv/res_hconf.c
Original file line number Diff line number Diff line change
@@ -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).
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit c6807d3

Please sign in to comment.