diff options
-rw-r--r-- | hurd/hurdsig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hurd/hurdsig.c b/hurd/hurdsig.c index 8471df2..d95958a 100644 --- a/hurd/hurdsig.c +++ b/hurd/hurdsig.c @@ -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; |