diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2002-11-05 16:53:20 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2002-11-05 16:53:20 +0000 |
commit | ad55f235f85b31b758e887ada54533a8f24dca3a (patch) | |
tree | 6af33b74d10a24e1f0f234cc409067c3c936d5ac | |
parent | a1a477af2071432c6e11842748e15d3c836154cd (diff) |
Use define, not number.
-rw-r--r-- | libexec/ld.so/powerpc/rtld_machine.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/ld.so/powerpc/rtld_machine.c b/libexec/ld.so/powerpc/rtld_machine.c index f8933adb032..389e7fd353d 100644 --- a/libexec/ld.so/powerpc/rtld_machine.c +++ b/libexec/ld.so/powerpc/rtld_machine.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rtld_machine.c,v 1.15 2002/09/09 19:06:18 drahn Exp $ */ +/* $OpenBSD: rtld_machine.c,v 1.16 2002/11/05 16:53:19 drahn Exp $ */ /* * Copyright (c) 1999 Dale Rahn @@ -503,7 +503,7 @@ _dl_bind(elf_object_t *object, int reloff) r_addr = (Elf_Addr *)(object->load_offs + relas->r_offset); this = NULL; ooff = _dl_find_symbol(symn, _dl_objects, &this, - SYM_SEARCH_ALL|SYM_WARNNOTFOUND|SYM_PLT, 0); + SYM_SEARCH_ALL|SYM_WARNNOTFOUND|SYM_PLT, SYM_NOTPLT); if (this == NULL) { _dl_printf("lazy binding failed!\n"); *((int *)0) = 0; /* XXX */ |