diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-02-27 09:34:31 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-02-27 09:34:31 +0000 |
commit | 62dcee574f77522535c9062203beec1fad2b794a (patch) | |
tree | 0a1cd6bae8aac9a0d3dcfa0de469b8f96313bb8d /elf/do-lookup.h | |
parent | 4d8bbe638067929150a56ff9b625b1454eea336f (diff) | |
download | glibc-62dcee574f77522535c9062203beec1fad2b794a.zip glibc-62dcee574f77522535c9062203beec1fad2b794a.tar.gz glibc-62dcee574f77522535c9062203beec1fad2b794a.tar.bz2 |
Replace _dl_debug_* variables with _dl_debug_mask.
Diffstat (limited to 'elf/do-lookup.h')
-rw-r--r-- | elf/do-lookup.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/do-lookup.h b/elf/do-lookup.h index 932c385..8f6c6c0 100644 --- a/elf/do-lookup.h +++ b/elf/do-lookup.h @@ -1,5 +1,5 @@ /* Look up a symbol in the loaded objects. - Copyright (C) 1995, 96, 97, 98, 99, 2000 Free Software Foundation, Inc. + Copyright (C) 1995,96,97,98,99,2000,2001 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -60,7 +60,7 @@ FCT (const char *undef_name, unsigned long int hash, const ElfW(Sym) *ref, continue; /* Print some debugging info if wanted. */ - if (__builtin_expect (_dl_debug_symbols, 0)) + if (__builtin_expect (_dl_debug_mask & DL_DEBUG_SYMBOLS, 0)) _dl_debug_message (1, "symbol=", undef_name, "; lookup in file=", map->l_name[0] ? map->l_name : _dl_argv[0], "\n", NULL); |