diff options
author | rie <none@none> | 2008-01-24 16:39:56 -0800 |
---|---|---|
committer | rie <none@none> | 2008-01-24 16:39:56 -0800 |
commit | f6acbf7c6543dc0aab58cae1df419f0147c46d77 (patch) | |
tree | c47eb83752097c5a99a6eda6c4923edec8272c4b /usr/src/cmd/sgs/rtld/common/elf.c | |
parent | 11022c7cf39f3b863e749f3866f6ddcb445c2d05 (diff) | |
download | illumos-joyent-f6acbf7c6543dc0aab58cae1df419f0147c46d77.tar.gz |
4947191 OSNet should use direct bindings
Diffstat (limited to 'usr/src/cmd/sgs/rtld/common/elf.c')
-rw-r--r-- | usr/src/cmd/sgs/rtld/common/elf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/cmd/sgs/rtld/common/elf.c b/usr/src/cmd/sgs/rtld/common/elf.c index 42589fff1e..45e64a557b 100644 --- a/usr/src/cmd/sgs/rtld/common/elf.c +++ b/usr/src/cmd/sgs/rtld/common/elf.c @@ -351,8 +351,8 @@ elf_lazy_load(Rt_map *clmp, uint_t ndx, const char *sym) * create an association between the caller and this dependency. */ if (nlmp && (((analyze_lmc(lml, lmco, nlmp) == 0)) || - (relocate_lmc(lml, lmco, clmp, nlmp) == 0) || - (bind_one(clmp, nlmp, BND_NEEDED) == 0))) + (bind_one(clmp, nlmp, BND_NEEDED) == 0) || + (relocate_lmc(lml, lmco, clmp, nlmp) == 0))) dip->di_info = nlmp = 0; /* |