This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

sysdeps/posix/spawni.c


2001-07-16  Andreas Schwab  <schwab@suse.de>

	* sysdeps/posix/spawni.c: Fix typo when iterating over signal
	numbers.

Index: sysdeps/posix/spawni.c
===================================================================
RCS file: /cvs/glibc/libc/sysdeps/posix/spawni.c,v
retrieving revision 1.2
diff -u -a -u -r1.2 sysdeps/posix/spawni.c
--- sysdeps/posix/spawni.c	2001/07/06 04:56:01	1.2
+++ sysdeps/posix/spawni.c	2001/07/16 19:14:23
@@ -112,7 +112,7 @@
       memset (&sa, '\0', sizeof (sa));
       sa.sa_handler = SIG_DFL;
 
-      for (sig = 1; sig >= _NSIG; ++sig)
+      for (sig = 1; sig <= _NSIG; ++sig)
 	if (sigismember (&attrp->__sd, sig) != 0
 	    && __sigaction (sig, &sa, NULL) != 0)
 	  _exit (SPAWN_ERROR);

-- 
Andreas Schwab                                  "And now for something
SuSE Labs                                        completely different."
Andreas.Schwab@suse.de
SuSE GmbH, Schanzäckerstr. 10, D-90443 Nürnberg
Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]