about summary refs log tree commit diff
path: root/elf/rtld.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-03-15 05:32:11 +0000
committerUlrich Drepper <drepper@redhat.com>2000-03-15 05:32:11 +0000
commitd9cb1a7dad1f2638cdaa12ff8ade54f9c24c64bc (patch)
tree6cc6cb94f13c173b2d52c0f43fd3a36c967830ab /elf/rtld.c
parent36388ac46a351a923a7690a8b0e88266bab16098 (diff)
downloadglibc-d9cb1a7dad1f2638cdaa12ff8ade54f9c24c64bc.tar.gz
glibc-d9cb1a7dad1f2638cdaa12ff8ade54f9c24c64bc.tar.xz
glibc-d9cb1a7dad1f2638cdaa12ff8ade54f9c24c64bc.zip
Update.
	* elf/dl-deps.c (_dl_map_object_deps): Change return type and remove
	last parameter.  Move code to add map to global scope from here...
	* elf/dl-open.c (dl_open_worker): ...here.
	* elf/ldsodefs.h: Adjust declaration of _dl_map_object_deps.
	* elf/rtld.c: Adjust call to _dl_map_object_deps.
Diffstat (limited to 'elf/rtld.c')
-rw-r--r--elf/rtld.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/rtld.c b/elf/rtld.c
index 20a6b314c5..94b93862b6 100644
--- a/elf/rtld.c
+++ b/elf/rtld.c
@@ -776,7 +776,7 @@ of this helper program; chances are you did not intend to run this program.\n\
      specified some libraries to load, these are inserted before the actual
      dependencies in the executable's searchlist for symbol resolution.  */
   HP_TIMING_NOW (start);
-  _dl_map_object_deps (_dl_loaded, preloads, npreloads, mode == trace, 0);
+  _dl_map_object_deps (_dl_loaded, preloads, npreloads, mode == trace);
   HP_TIMING_NOW (stop);
   HP_TIMING_DIFF (diff, start, stop);
   HP_TIMING_ACCUM_NT (load_time, diff);