diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-03-01 08:17:40 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-03-01 08:17:40 +0000 |
commit | c1d32f33b2f1d974ed6bb82fa6e6675a5793f525 (patch) | |
tree | 4d5582a9422b93d2c232a39d93439aecba3ed284 /elf/dl-load.c | |
parent | 7b97934bf9a5b4b52a82ab6631d6255a5c93b0a1 (diff) | |
download | glibc-c1d32f33b2f1d974ed6bb82fa6e6675a5793f525.tar glibc-c1d32f33b2f1d974ed6bb82fa6e6675a5793f525.tar.gz glibc-c1d32f33b2f1d974ed6bb82fa6e6675a5793f525.tar.bz2 glibc-c1d32f33b2f1d974ed6bb82fa6e6675a5793f525.zip |
Update.
2001-03-01 Ulrich Drepper <drepper@redhat.com>
* elf/dl-load.c: Pretty printing.
* elf/dl-object.c (_dl_new_object): Don't add the loader's scope
twice.
* elf/dl-misc.c (_dl_debug_vdprintf): Fix typo visible on 64-bit
Diffstat (limited to 'elf/dl-load.c')
-rw-r--r-- | elf/dl-load.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/dl-load.c b/elf/dl-load.c index 2e4d2d8d98..6e4c972b00 100644 --- a/elf/dl-load.c +++ b/elf/dl-load.c @@ -1105,7 +1105,7 @@ _dl_map_object_from_fd (const char *name, int fd, struct filebuf *fbp, /* If this object has DT_SYMBOLIC set modify now its scope. We don't have to do this for the main map. */ if (__builtin_expect (l->l_info[DT_SYMBOLIC] != NULL, 0) - && &l->l_searchlist != l->l_scope[0]) + && &l->l_searchlist != l->l_scope[0]) { /* Create an appropriate searchlist. It contains only this map. |