summaryrefslogtreecommitdiff
path: root/elf/dl-error.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-09-10 00:36:58 +0000
committerUlrich Drepper <drepper@redhat.com>2002-09-10 00:36:58 +0000
commitd92cdffbacec7d30410a567cdeb1ac6d857ec325 (patch)
tree14961b7f9f23fc4296ebaa1b4045b464ebd6a78d /elf/dl-error.c
parentd416a785aa5f313cbc6c6b158150f2c7e811b596 (diff)
Update.
2002-09-09 Steven Munroe <sjmunroe@us.ibm.com> * elf/elf.h: Add powerpc64 specific elf relocation and dynamic types. 2002-09-09 Jakub Jelinek <jakub@redhat.com> * elf/dl-error.c (_dl_signal_cerror): Don't print anything if only LD_DEBUG=statistics or LD_TRACE_PRELINKING.
Diffstat (limited to 'elf/dl-error.c')
-rw-r--r--elf/dl-error.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/elf/dl-error.c b/elf/dl-error.c
index ccb4e4dc49..0af8f2f94b 100644
--- a/elf/dl-error.c
+++ b/elf/dl-error.c
@@ -119,7 +119,8 @@ internal_function
_dl_signal_cerror (int errcode, const char *objname, const char *occation,
const char *errstring)
{
- if (__builtin_expect (GL(dl_debug_mask), 0))
+ if (__builtin_expect (GL(dl_debug_mask)
+ & ~(DL_DEBUG_STATISTICS|DL_DEBUG_PRELINK), 0))
INTUSE(_dl_debug_printf) ("%s: error: %s: %s (%s)\n", objname, occation,
errstring, receiver ? "continued" : "fatal");