diff options
author | Ka Ho Ng <khng@FreeBSD.org> | 2024-10-25 16:19:57 +0000 |
---|---|---|
committer | Ka Ho Ng <khng@FreeBSD.org> | 2024-10-25 16:20:16 +0000 |
commit | 72e15f76a1b3e7bddb5fa1b0429e41d07950af65 (patch) | |
tree | 877aeb499552d7f971623ce9c93034bd14eda3e8 /lib/libkldelf/elf.c | |
parent | 3ceba58a7509418b47b8fca2d2b6bbf088714e26 (diff) |
Diffstat (limited to 'lib/libkldelf/elf.c')
-rw-r--r-- | lib/libkldelf/elf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libkldelf/elf.c b/lib/libkldelf/elf.c index 8af02622de13..cf43d9bfd5fd 100644 --- a/lib/libkldelf/elf.c +++ b/lib/libkldelf/elf.c @@ -688,7 +688,8 @@ elf_reloc(struct elf_file *efile, const void *reldata, Elf_Type reltype, } int -elf_lookup_symbol(struct elf_file *efile, const char *name, GElf_Sym **sym) +elf_lookup_symbol(struct elf_file *efile, const char *name, GElf_Sym **sym, + bool see_local) { - return (EF_LOOKUP_SYMBOL(efile, name, sym)); + return (EF_LOOKUP_SYMBOL(efile, name, sym, see_local)); } |