Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
2004-10-05  Ulrich Drepper  <drepper@redhat.com>

	* elf/rtld.c (dl_main): Use _dl_debug_printf instead of _dl_printf
	for prelink message.
  • Loading branch information
Ulrich Drepper committed Oct 6, 2004
1 parent 5c1c368 commit b85a0f3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2004-10-05 Ulrich Drepper <drepper@redhat.com>

* elf/rtld.c (dl_main): Use _dl_debug_printf instead of _dl_printf
for prelink message.

2004-10-05 Jakub Jelinek <jakub@redhat.com>

* sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Include dl-sysdep.h.
Expand Down
3 changes: 2 additions & 1 deletion elf/rtld.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}


Expand Down

0 comments on commit b85a0f3

Please sign in to comment.