diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-04-08 18:00:34 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-04-08 18:00:34 +0000 |
commit | 4c8b8cc332a4581f7d1627c80030abb922940bfe (patch) | |
tree | 7cf57d5b88ade8149680ccccb21b5ba3e14ac4a7 /resolv | |
parent | cd57745bd826356caa533cc2df0cab2aadc883f1 (diff) | |
download | glibc-4c8b8cc332a4581f7d1627c80030abb922940bfe.tar glibc-4c8b8cc332a4581f7d1627c80030abb922940bfe.tar.gz glibc-4c8b8cc332a4581f7d1627c80030abb922940bfe.tar.bz2 glibc-4c8b8cc332a4581f7d1627c80030abb922940bfe.zip |
* malloc/malloc.c (_int_realloc): Add parameter with old block
size. Remove duplicated test. Don't handle mmap'ed blocks here.
Adjust all callers.
* malloc/hooks.c (realloc_check): Adjust _int_realloc call.
Diffstat (limited to 'resolv')
-rw-r--r-- | resolv/res_hconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resolv/res_hconf.c b/resolv/res_hconf.c index a98dfda88a..ed55bec296 100644 --- a/resolv/res_hconf.c +++ b/resolv/res_hconf.c @@ -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; |