about summary refs log tree commit diff
path: root/elf/dl-version.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-02-22 18:05:04 +0000
committerUlrich Drepper <drepper@redhat.com>1999-02-22 18:05:04 +0000
commit3f933dc2ef1aa201cd277a480b3954afa1f62b07 (patch)
tree834ea1edc2342589cf5f5e3bca59fa1f7028ed2a /elf/dl-version.c
parent69b3b3cb3873d59edfebae0cb7db58166d78f3a6 (diff)
downloadglibc-3f933dc2ef1aa201cd277a480b3954afa1f62b07.tar.gz
glibc-3f933dc2ef1aa201cd277a480b3954afa1f62b07.tar.xz
glibc-3f933dc2ef1aa201cd277a480b3954afa1f62b07.zip
Update.
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.
Diffstat (limited to 'elf/dl-version.c')
-rw-r--r--elf/dl-version.c19
1 files changed, 10 insertions, 9 deletions
diff --git a/elf/dl-version.c b/elf/dl-version.c
index fbc41654ef..8d59fe278f 100644
--- a/elf/dl-version.c
+++ b/elf/dl-version.c
@@ -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;
 }