diff options
| author | Konstantin Belousov <kib@FreeBSD.org> | 2020-02-14 12:59:27 +0000 |
|---|---|---|
| committer | Konstantin Belousov <kib@FreeBSD.org> | 2020-02-14 12:59:27 +0000 |
| commit | e3741c01c624cd55762a023f977388a7db3df05b (patch) | |
| tree | c59d67b21b3a626faa47aac49b00b12b05b6e720 /libexec | |
| parent | ba8dd40bb12043c547adb14d25bf4b65217bda8b (diff) | |
Notes
Diffstat (limited to 'libexec')
| -rw-r--r-- | libexec/rtld-elf/i386/reloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/rtld-elf/i386/reloc.c b/libexec/rtld-elf/i386/reloc.c index 7f2dd0c69ef1..be4f18197cd8 100644 --- a/libexec/rtld-elf/i386/reloc.c +++ b/libexec/rtld-elf/i386/reloc.c @@ -392,7 +392,7 @@ reloc_iresolve(Obj_Entry *obj, RtldLockState *lockstate) obj->irelative = false; rellim = (const Elf_Rel *)((const char *)obj->pltrel + obj->pltrelsize); for (rel = obj->pltrel; rel < rellim; rel++) { - if (ELF_R_TYPE(rel->r_info) == R_386_RELATIVE) + if (ELF_R_TYPE(rel->r_info) == R_386_IRELATIVE) reloc_iresolve_one(obj, rel, lockstate); } return (0); |
