diff options
-rw-r--r-- | libexec/ld.so/dlfcn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/ld.so/dlfcn.c b/libexec/ld.so/dlfcn.c index 8e69c481b2c..f64245203cb 100644 --- a/libexec/ld.so/dlfcn.c +++ b/libexec/ld.so/dlfcn.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dlfcn.c,v 1.79 2008/05/05 02:29:02 kurt Exp $ */ +/* $OpenBSD: dlfcn.c,v 1.80 2008/06/13 23:14:47 kurt Exp $ */ /* * Copyright (c) 1998 Per Fogelstrom, Opsycon AB @@ -548,7 +548,7 @@ dl_iterate_phdr(int (*callback)(struct dl_phdr_info *, size_t, void *data), if (object->phdrp == NULL) continue; - info.dlpi_addr = object->load_base; + info.dlpi_addr = object->obj_base; info.dlpi_name = object->load_name; info.dlpi_phdr = object->phdrp; info.dlpi_phnum = object->phdrc; |