1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00
1999-02-23  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>

	* elf/dl-error.c (_dl_signal_cerror): New function.
	(_dl_signal_error): Don't call receiver function.
	* elf/dl-lookup.c (_dl_lookup_symbol): Call _dl_signal_cerror
	instead of _dl_signal_error when reporting references to undefined
	symbols or versions.
	(_dl_lookup_versioned_symbol): Likewise.
	(_dl_lookup_versioned_symbol_skip): Likewise.
	* elf/dl-version.c (match_symbol): Likewise.

	* elf/ldsodefs.h: Declare _dl_signal_cerror.

	* misc/getttyent.c (getttyent): Release lock on stream later to
	also protect global variable zapchar.
This commit is contained in:
Ulrich Drepper
1999-02-22 18:05:04 +00:00
parent 69b3b3cb38
commit 3f933dc2ef
6 changed files with 84 additions and 43 deletions

View File

@@ -93,9 +93,10 @@ match_symbol (const char *name, ElfW(Word) hash, const char *string,
object was linked against another version of this file. We
only print a message if verbose output is requested. */
if (verbose)
_dl_signal_error (0, map->l_name, make_string ("\
_dl_signal_cerror (0, map->l_name,
make_string ("\
no version information available (required by ",
name, ")"));
name, ")"));
return 0;
}
@@ -143,16 +144,16 @@ no version information available (required by ",
if (weak)
{
if (verbose)
_dl_signal_error (0, map->l_name,
make_string ("weak version `", string,
"' not found (required by ", name,
")"));
_dl_signal_cerror (0, map->l_name,
make_string ("weak version `", string,
"' not found (required by ", name,
")"));
return 0;
}
_dl_signal_error (0, map->l_name,
make_string ("version `", string,
"' not found (required by ", name, ")"));
_dl_signal_cerror (0, map->l_name,
make_string ("version `", string,
"' not found (required by ", name, ")"));
return 1;
}