diff options
author | jdp <jdp@FreeBSD.org> | 1999-09-04 20:14:48 +0000 |
---|---|---|
committer | jdp <jdp@FreeBSD.org> | 1999-09-04 20:14:48 +0000 |
commit | 112103bcfe414915f77b443be195fe90abb9f642 (patch) | |
tree | 86c15b4ecd6d80c99853d5f95016b2e62bd6ec39 /libexec | |
parent | 7b71ff3e665c0bd25ccc5ec4f63925be8123d137 (diff) | |
download | FreeBSD-src-112103bcfe414915f77b443be195fe90abb9f642.zip FreeBSD-src-112103bcfe414915f77b443be195fe90abb9f642.tar.gz |
Change the warning about unrecognized entries in the dynamic table
to a debug message which is disabled in production builds of the
dynamic linker. The condition warned about is normally harmless.
PR: bin/12849
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/rtld-elf/rtld.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/rtld-elf/rtld.c b/libexec/rtld-elf/rtld.c index 9147277..d0a3ce4 100644 --- a/libexec/rtld-elf/rtld.c +++ b/libexec/rtld-elf/rtld.c @@ -550,8 +550,8 @@ digest_dynamic(Obj_Entry *obj) break; default: - xprintf("Ignored d_tag %d\n",dynp->d_tag); - break; + dbg("Ignoring d_tag %d = %#x", dynp->d_tag, dynp->d_tag); + break; } } |