]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
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 8471df27d7155a6837f3f9cae5ab215c26b8289f..d95958a323c662613039b1b72af1f529d61a42b7 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;