1998-03-10  Ulrich Drepper  <drepper@cygnus.com>

	* elf/dl-lookup.c (_dl_lookup_versioned_symbol): Print version
	symbol in debug message.
	(_dl_lookup_versioned_symbol_skip): Likewise.

	* sysdeps/unix/readdir_r.c: Zero out *result on EOF.
	* manual/filesys/texi: Document this.
	0600.  Reported by Greg Alexander <galexand@sietch.bloomington.in.us>.
This commit is contained in:
Ulrich Drepper 1998-03-10 12:04:08 +00:00
parent c063ba610a
commit db0b91a906
2 changed files with 13 additions and 5 deletions

View File

@ -1,8 +1,14 @@
1998-03-10 Ulrich Drepper <drepper@cygnus.com>
* elf/dl-lookup.c (_dl_lookup_versioned_symbol): Print version
symbol in debug message.
(_dl_lookup_versioned_symbol_skip): Likewise.
1998-03-10 19:43 Matthias Urlichs <urlichs@noris.de>
* sysdeps/unix/readdir_r.c: zero out *result on EOF.
* sysdeps/unix/readdir_r.c: Zero out *result on EOF.
* sysdeps/unix/sysv/linux/readdir64_r.c: Likewise.
* manual/filesys/texi: document this.
* manual/filesys/texi: Document this.
1998-03-10 10:49 Ulrich Drepper <drepper@cygnus.com>
@ -11,7 +17,7 @@
1998-03-10 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/posix/mkstemp.c (mkstemp): Open temporary file mode
0600. Reported by Greg Alexander <galexand@sietch.bloomington.in.us>.
0600. Reported by Greg Alexander <galexand@sietch.bloomington.in.us>.
1998-03-10 00:10 Ulrich Drepper <drepper@cygnus.com>

View File

@ -345,7 +345,8 @@ _dl_lookup_versioned_symbol (const char *undef_name, const ElfW(Sym) **ref,
_dl_debug_message ("\tbinding file ", reference_name, " to ",
current_value.m->l_name[0]
? current_value.m->l_name : _dl_argv[0],
": symbol `", undef_name, "'\n", NULL);
": symbol `", undef_name, "' [", version->name,
"]\n", NULL);
*ref = current_value.s;
return current_value.m->l_addr;
@ -398,7 +399,8 @@ _dl_lookup_versioned_symbol_skip (const char *undef_name,
_dl_debug_message ("\tbinding file ", reference_name, " to ",
current_value.m->l_name[0]
? current_value.m->l_name : _dl_argv[0],
": symbol `", undef_name, "'\n", NULL);
": symbol `", undef_name, "' [", version->name,
"]\n", NULL);
*ref = current_value.s;
return current_value.m->l_addr;