diff options
author | marcel <marcel@FreeBSD.org> | 2006-01-28 17:58:22 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2006-01-28 17:58:22 +0000 |
commit | 597a7332d8b12ce2f47cbd5c59a94534a4da9637 (patch) | |
tree | 49be290141d1ee28124418436dbc410e1b5f6727 /libexec/rtld-elf | |
parent | 07b3a00d8376b31fa60b7eb3e31ad1505fdfa0db (diff) | |
download | FreeBSD-src-597a7332d8b12ce2f47cbd5c59a94534a4da9637.zip FreeBSD-src-597a7332d8b12ce2f47cbd5c59a94534a4da9637.tar.gz |
s/DT_IA64_PLT_RESERVE/DT_IA_64_PLT_RESERVE/
Diffstat (limited to 'libexec/rtld-elf')
-rw-r--r-- | libexec/rtld-elf/ia64/reloc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/rtld-elf/ia64/reloc.c b/libexec/rtld-elf/ia64/reloc.c index a45a19c..45f9ef5 100644 --- a/libexec/rtld-elf/ia64/reloc.c +++ b/libexec/rtld-elf/ia64/reloc.c @@ -564,7 +564,7 @@ init_pltgot(Obj_Entry *obj) Elf_Addr *pltres = 0; /* - * When there are no PLT relocations, the DT_IA64_PLT_RESERVE entry + * When there are no PLT relocations, the DT_IA_64_PLT_RESERVE entry * is bogus. Do not setup the BOR pointers in that case. An example * of where this happens is /usr/lib/libxpg4.so.3. */ @@ -575,12 +575,12 @@ init_pltgot(Obj_Entry *obj) * Find the PLT RESERVE section. */ for (dynp = obj->dynamic; dynp->d_tag != DT_NULL; dynp++) { - if (dynp->d_tag == DT_IA64_PLT_RESERVE) + if (dynp->d_tag == DT_IA_64_PLT_RESERVE) pltres = (u_int64_t *) (obj->relocbase + dynp->d_un.d_ptr); } if (!pltres) - errx(1, "Can't find DT_IA64_PLT_RESERVE entry"); + errx(1, "Can't find DT_IA_64_PLT_RESERVE entry"); /* * The PLT RESERVE section is used to get values to pass to |