Skip to content

Commit

Permalink
(__dl_runtime_resolve): Pass ELF_RTYPE_CLASS_PLT, instead of R_MIPS_R…
Browse files Browse the repository at this point in the history
…EL32, to _dl_lookup_versioned_symbol () and _dl_lookup_symbol ().
  • Loading branch information
Ulrich Drepper committed Aug 29, 2001
1 parent f13df7c commit 8b78819
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sysdeps/mips/dl-machine.h
Original file line number Diff line number Diff line change
Expand Up @@ -301,14 +301,14 @@ __dl_runtime_resolve (ElfW(Word) sym_index, \
{ \
value = _dl_lookup_versioned_symbol(strtab + sym->st_name, l, \
&sym, l->l_scope, version,\
R_MIPS_REL32, 0); \
ELF_RTYPE_CLASS_PLT, 0); \
break; \
} \
/* Fall through. */ \
} \
case 0: \
value = _dl_lookup_symbol (strtab + sym->st_name, l, &sym, \
l->l_scope, R_MIPS_REL32, 0); \
l->l_scope, ELF_RTYPE_CLASS_PLT, 0); \
} \
\
/* Currently value contains the base load address of the object \
Expand Down

0 comments on commit 8b78819

Please sign in to comment.