From c6807d38a11d67d6fc8a49040ce29dfe84ffe4ed Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 7 Apr 2009 16:13:15 +0000 Subject: * resolv/res_hconf.c (_res_hconf_trim_domain): Use strcasecmp instead of __strcasecmp. * resolv/nss_dns/dns-host.c (getanswer_r): Likewise. --- resolv/res_hconf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'resolv/res_hconf.c') 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; -- cgit 1.4.1