Wed Jun 5 00:01:19 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
authorRoland McGrath <roland@gnu.org>
Wed, 5 Jun 1996 04:03:34 +0000 (04:03 +0000)
committerRoland McGrath <roland@gnu.org>
Wed, 5 Jun 1996 04:03:34 +0000 (04:03 +0000)
* elf/dl-lookup.c (_dl_lookup_symbol): Fix typos in last change.
Comment out ref to nonexistent _dl_close.

ChangeLog
elf/dl-lookup.c

index 336cb92..e91beb0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Jun  5 00:01:19 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
+
+       * 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  <roland@delasyd.gnu.ai.mit.edu>
 
        * math/Makefile (libm-support, libm-calls): New variables.
index b2e9bff..1049639 100644 (file)
@@ -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;
 
       {