From 1c384dcd5f689738952f3dc7d8f0224894c8a4ba Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 5 Jun 1996 04:03:34 +0000 Subject: [PATCH] Wed Jun 5 00:01:19 1996 Roland McGrath * elf/dl-lookup.c (_dl_lookup_symbol): Fix typos in last change. Comment out ref to nonexistent _dl_close. --- ChangeLog | 5 +++++ elf/dl-lookup.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 336cb92..e91beb0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Jun 5 00:01:19 1996 Roland McGrath + + * elf/dl-lookup.c (_dl_lookup_symbol): Fix typos in last change. + Comment out ref to nonexistent _dl_close. + Tue Jun 4 21:01:20 1996 Roland McGrath * math/Makefile (libm-support, libm-calls): New variables. diff --git a/elf/dl-lookup.c b/elf/dl-lookup.c index b2e9bff..1049639 100644 --- a/elf/dl-lookup.c +++ b/elf/dl-lookup.c @@ -125,14 +125,14 @@ _dl_lookup_symbol (const char *undef_name, const Elf32_Sym **ref, static struct magic magic[] = { { 0xd6a2a5e, "_GNU_libc_dl_open", (Elf32_Addr) &_dl_open }, - { 0x69ef845, "_GNU_libc_dl_close", (Elf32_Addr) &_dl_close }, +/* { 0x69ef845, "_GNU_libc_dl_close", (Elf32_Addr) &_dl_close },*/ { 0xae4d63c, "_GNU_libc_dl_symbol", (Elf32_Addr) &_dl_symbol_value }, { 0, NULL, 0 } }; struct magic *m; for (m = magic; m->hash; ++m) - if (hash == m->hash && !strcmp (name, m->name)) + if (hash == m->hash && !strcmp (undef_name, m->name)) return m->value; { -- 2.7.4