2001-07-24 Igor Khavkine <i_khavki@alcor.concordia.ca>
authorRoland McGrath <roland@gnu.org>
Tue, 24 Jul 2001 04:59:07 +0000 (04:59 +0000)
committerRoland McGrath <roland@gnu.org>
Tue, 24 Jul 2001 04:59:07 +0000 (04:59 +0000)
        * hurd/hurdsig.c (_hurdsig_init): Fix incorrect initialization
        of pending signals.

hurd/hurdsig.c

index 8471df2..d95958a 100644 (file)
@@ -1229,7 +1229,7 @@ _hurdsig_init (const int *intarray, size_t intarraysize)
   if (intarraysize > INIT_SIGMASK)
     ss->blocked = intarray[INIT_SIGMASK];
   if (intarraysize > INIT_SIGPENDING)
-    ss->blocked = intarray[INIT_SIGPENDING];
+    ss->pending = intarray[INIT_SIGPENDING];
   if (intarraysize > INIT_SIGIGN && intarray[INIT_SIGIGN] != 0)
     {
       int signo;