summaryrefslogtreecommitdiff
path: root/ldso
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2002-12-01 00:57:23 +0000
committerDavid Schleef <ds@schleef.org>2002-12-01 00:57:23 +0000
commit2e08b7b87e47d9a430c1de47f684ec7c1d410c4f (patch)
tree30b5aa25ac4e3fee031f18a4a1f585bd4f23e47f /ldso
parent06245f1e2c96f22d3399d728a3b2d4004136474b (diff)
Make ldd work even more like GNU ldd by appending dummy load addresses
Diffstat (limited to 'ldso')
-rw-r--r--ldso/util/ldd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldso/util/ldd.c b/ldso/util/ldd.c
index 951c839fb..7fdeaf5b0 100644
--- a/ldso/util/ldd.c
+++ b/ldso/util/ldd.c
@@ -535,10 +535,10 @@ int main( int argc, char** argv)
}
for (cur = lib_list; cur; cur=cur->next) {
got_em_all=1;
- printf("\t%s => %s\n", cur->name, cur->path);
+ printf("\t%s => %s (0x00000000)\n", cur->name, cur->path);
}
if (interp_dir && got_em_all==1)
- printf("\t%s => %s\n", interp, interp);
+ printf("\t%s => %s (0x00000000)\n", interp, interp);
if (got_em_all==0)
printf("\tnot a dynamic executable\n");
}