From 74f0e38f1729f1eeba8ebf7d53b7554220d157b2 Mon Sep 17 00:00:00 2001 From: jdp Date: Sat, 4 Sep 1999 20:14:48 +0000 Subject: [PATCH] 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 --- libexec/rtld-elf/rtld.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libexec/rtld-elf/rtld.c b/libexec/rtld-elf/rtld.c index 914727788716..d0a3ce42e08a 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; } }