[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[commits] r10060 - in /fsf/trunk/libc: ChangeLog libc-abis localedata/ChangeLog localedata/Makefile resolv/res_send.c
- To: commits@xxxxxxxxxx
- Subject: [commits] r10060 - in /fsf/trunk/libc: ChangeLog libc-abis localedata/ChangeLog localedata/Makefile resolv/res_send.c
- From: eglibc@xxxxxxxxxx
- Date: Thu, 18 Mar 2010 07:03:07 -0000
Author: eglibc
Date: Thu Mar 18 00:03:06 2010
New Revision: 10060
Log:
Import glibc-mainline for 2010-03-18
Modified:
fsf/trunk/libc/ChangeLog
fsf/trunk/libc/libc-abis
fsf/trunk/libc/localedata/ChangeLog
fsf/trunk/libc/localedata/Makefile
fsf/trunk/libc/resolv/res_send.c
Modified: fsf/trunk/libc/ChangeLog
==============================================================================
--- fsf/trunk/libc/ChangeLog (original)
+++ fsf/trunk/libc/ChangeLog Thu Mar 18 00:03:06 2010
@@ -1,3 +1,13 @@
+2010-03-16 Andreas Schwab <schwab@xxxxxxxxxx>
+
+ * resolv/res_send.c (__libc_res_nsend): Fix printing of server
+ address in debug statement.
+ (send_dg): Pass correct buffer pointer to DprintQ.
+
+2010-03-17 Ulrich Drepper <drepper@xxxxxxxxxx>
+
+ * libc-abis: Add a few more entries.
+
2010-03-16 Ulrich Drepper <drepper@xxxxxxxxxx>
* elf/dl-load.c (VALID_ELF_ABIVERSION): Add additional osabi parameter.
Modified: fsf/trunk/libc/libc-abis
==============================================================================
--- fsf/trunk/libc/libc-abis (original)
+++ fsf/trunk/libc/libc-abis Thu Mar 18 00:03:06 2010
@@ -42,3 +42,7 @@
# Indirect PLT relocations. Architecture dependent.
IFUNC x86_64-*-linux*
IFUNC i?86-*-linux*
+IFUNC powerpc64-*-linux*
+IFUNC powerpc-*-linux*
+IFUNC sparc64-*-linux*
+IFUNC sparc-*-linux*
Modified: fsf/trunk/libc/localedata/ChangeLog
==============================================================================
--- fsf/trunk/libc/localedata/ChangeLog (original)
+++ fsf/trunk/libc/localedata/ChangeLog Thu Mar 18 00:03:06 2010
@@ -1,3 +1,7 @@
+2010-02-16 Paul Pluzhnikov <ppluzhnikov@xxxxxxxxxx>
+
+ * Makefile: Add missing gconv-modules dependency.
+
2010-02-03 Ulrich Drepper <drepper@xxxxxxxxxx>
[BZ #10414]
Modified: fsf/trunk/libc/localedata/Makefile
==============================================================================
--- fsf/trunk/libc/localedata/Makefile (original)
+++ fsf/trunk/libc/localedata/Makefile Thu Mar 18 00:03:06 2010
@@ -106,6 +106,8 @@
install-others := $(addprefix $(inst_i18ndir)/, \
$(addsuffix .gz, $(charmaps)) \
$(locales))
+
+tests: $(objdir)/iconvdata/gconv-modules
include ../Rules
@@ -298,3 +300,6 @@
LOCPATH=$(common-objpfx)localedata
$(objpfx)mtrace-tst-leaks: $(objpfx)tst-leaks.out
$(common-objpfx)malloc/mtrace $(objpfx)tst-leaks.mtrace > $@
+
+$(objdir)/iconvdata/gconv-modules:
+ $(MAKE) -C ../iconvdata subdir=iconvdata $@
Modified: fsf/trunk/libc/resolv/res_send.c
==============================================================================
--- fsf/trunk/libc/resolv/res_send.c (original)
+++ fsf/trunk/libc/resolv/res_send.c Thu Mar 18 00:03:06 2010
@@ -535,7 +535,10 @@
Dprint(statp->options & RES_DEBUG,
(stdout, ";; Querying server (# %d) address = %s\n",
- ns + 1, inet_ntop(AF_INET6, &nsap->sin6_addr,
+ ns + 1, inet_ntop(nsap->sin6_family,
+ (nsap->sin6_family == AF_INET6
+ ? &nsap->sin6_addr
+ : &((struct sockaddr_in *) nsap)->sin_addr),
tmpbuf, sizeof (tmpbuf))));
if (__builtin_expect (v_circuit, 0)) {
@@ -1201,7 +1204,7 @@
DprintQ((statp->options & RES_DEBUG) ||
(statp->pfcode & RES_PRF_REPLY),
(stdout, ";; old answer:\n"),
- thisansp,
+ *thisansp,
(*thisresplenp > *thisanssizp)
? *thisanssizp : *thisresplenp);
goto wait;
@@ -1216,7 +1219,7 @@
DprintQ((statp->options & RES_DEBUG) ||
(statp->pfcode & RES_PRF_REPLY),
(stdout, ";; not our server:\n"),
- thisansp,
+ *thisansp,
(*thisresplenp > *thisanssizp)
? *thisanssizp : *thisresplenp);
goto wait;
@@ -1233,7 +1236,7 @@
DprintQ(statp->options & RES_DEBUG,
(stdout,
"server rejected query with EDNS0:\n"),
- thisansp,
+ *thisansp,
(*thisresplenp > *thisanssizp)
? *thisanssizp : *thisresplenp);
/* record the error */
@@ -1258,7 +1261,7 @@
DprintQ((statp->options & RES_DEBUG) ||
(statp->pfcode & RES_PRF_REPLY),
(stdout, ";; wrong query name:\n"),
- thisansp,
+ *thisansp,
(*thisresplenp > *thisanssizp)
? *thisanssizp : *thisresplenp);
goto wait;
@@ -1268,7 +1271,7 @@
anhp->rcode == REFUSED) {
DprintQ(statp->options & RES_DEBUG,
(stdout, "server rejected query:\n"),
- thisansp,
+ *thisansp,
(*thisresplenp > *thisanssizp)
? *thisanssizp : *thisresplenp);
@@ -1295,7 +1298,7 @@
&& anhp->aa == 0 && anhp->ra == 0 && anhp->arcount == 0) {
DprintQ(statp->options & RES_DEBUG,
(stdout, "referred query:\n"),
- thisansp,
+ *thisansp,
(*thisresplenp > *thisanssizp)
? *thisanssizp : *thisresplenp);
goto next_ns;