mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-27 03:41:23 +08:00
Update.
2004-10-04 Ulrich Drepper <drepper@redhat.com> * elf/rtld.c (dl_main): Only skip => output in ldd mode if both strings are identical.
This commit is contained in:
parent
26d550d38b
commit
7548969348
@ -1,3 +1,8 @@
|
||||
2004-10-04 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* elf/rtld.c (dl_main): Only skip => output in ldd mode if both
|
||||
strings are identical.
|
||||
|
||||
2004-03-18 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* malloc/arena.c (aligned_heap_area): New variable.
|
||||
|
@ -1572,7 +1572,7 @@ cannot allocate TLS data structures for initial thread");
|
||||
if (l->l_faked)
|
||||
/* The library was not found. */
|
||||
_dl_printf ("\t%s => not found\n", l->l_libname->name);
|
||||
else if (l->l_libname->name[0] == '/')
|
||||
else if (strcmp (l->l_libname->name, l->l_name) == 0)
|
||||
_dl_printf ("\t%s (0x%0*Zx)\n", l->l_libname->name,
|
||||
(int) sizeof l->l_map_start * 2,
|
||||
(size_t) l->l_map_start);
|
||||
|
Loading…
Reference in New Issue
Block a user