From: Ulrich Drepper Date: Wed, 6 Oct 2004 03:18:15 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/fedora-glibc-20041006T0900~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b85a0f39b72abca260a01b7c2e7210bffc876f78;p=thirdparty%2Fglibc.git Update. 2004-10-05 Ulrich Drepper * elf/rtld.c (dl_main): Use _dl_debug_printf instead of _dl_printf for prelink message. --- diff --git a/ChangeLog b/ChangeLog index e3b81addc50..9bb8a43b91c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-10-05 Ulrich Drepper + + * elf/rtld.c (dl_main): Use _dl_debug_printf instead of _dl_printf + for prelink message. + 2004-10-05 Jakub Jelinek * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Include dl-sysdep.h. diff --git a/elf/rtld.c b/elf/rtld.c index ed1931ce8e6..5e18a492675 100644 --- a/elf/rtld.c +++ b/elf/rtld.c @@ -1759,7 +1759,8 @@ cannot allocate TLS data structures for initial thread"); prelinked = true; if (__builtin_expect (GLRO(dl_debug_mask) & DL_DEBUG_LIBS, 0)) - _dl_printf ("\nprelink checking: %s\n", prelinked ? "ok" : "failed"); + _dl_debug_printf ("\nprelink checking: %s\n", + prelinked ? "ok" : "failed"); }