1998-11-29  Ulrich Drepper  <drepper@cygnus.com>

	* sysdeps/generic/segfault.c (install_handler): Correct test for
	SEGFAULT_HANDLER=all.
	Patch by Zack Weinberg.
This commit is contained in:
Ulrich Drepper 1998-11-29 08:44:37 +00:00
parent 0fea0021dc
commit 5f75d1e2fd
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
1998-11-29 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/generic/segfault.c (install_handler): Correct test for
SEGFAULT_HANDLER=all.
Patch by Zack Weinberg.
1998-11-28 23:23 -0500 Zack Weinberg <zack@rabi.phys.columbia.edu>
* sysdeps/unix/sysv/linux/configure.in: Test for symlinks in

View File

@ -188,7 +188,7 @@ install_handler (void)
else
{
const char *where;
int all = __strcasecmp (sigs, "all");
int all = __strcasecmp (sigs, "all") == 0;
#define INSTALL_FOR_SIG(sig, name) \
where = __strcasestr (sigs, name); \