summaryrefslogtreecommitdiffstats
path: root/libexec
diff options
context:
space:
mode:
authorjdp <jdp@FreeBSD.org>1999-09-04 20:14:48 +0000
committerjdp <jdp@FreeBSD.org>1999-09-04 20:14:48 +0000
commit112103bcfe414915f77b443be195fe90abb9f642 (patch)
tree86c15b4ecd6d80c99853d5f95016b2e62bd6ec39 /libexec
parent7b71ff3e665c0bd25ccc5ec4f63925be8123d137 (diff)
downloadFreeBSD-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.c4
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;
}
}
OpenPOWER on IntegriCloud