Skip to content

Commit

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

	* elf/rtld.c (dl_main): Only skip => output in ldd mode if both
	strings are identical.
  • Loading branch information
Ulrich Drepper committed Oct 4, 2004
1 parent 26d550d commit 7548969
Show file tree
Hide file tree
Showing 2 changed files with 6 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-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.
Expand Down
2 changes: 1 addition & 1 deletion elf/rtld.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 7548969

Please sign in to comment.