diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-06-15 20:35:18 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-06-15 20:35:18 +0200 |
commit | 86b85cf440324c4be2d49472e40dbb6ec0faa330 (patch) | |
tree | d3f0da63487dd124e490aef54aa710dbab6032dc /src/test/test-pty.c | |
parent | 78ed65ac8dd05041f08ba8b089e1e87445a0905f (diff) | |
parent | 72c0a2c255b172ebbb2a2b7dab7c9aec4c9582d9 (diff) |
Merge pull request #214 from poettering/signal-rework-2
everywhere: port everything to sigprocmask_many() and friends
Diffstat (limited to 'src/test/test-pty.c')
-rw-r--r-- | src/test/test-pty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test-pty.c b/src/test/test-pty.c index f8807c9150..3f97a64ccd 100644 --- a/src/test/test-pty.c +++ b/src/test/test-pty.c @@ -129,7 +129,7 @@ int main(int argc, char *argv[]) { log_parse_environment(); log_open(); - assert_se(sigprocmask_many(SIG_BLOCK, SIGCHLD, -1) >= 0); + assert_se(sigprocmask_many(SIG_BLOCK, NULL, SIGCHLD, -1) >= 0); /* Oh, there're ugly races in the TTY layer regarding HUP vs IN. Turns * out they appear only 10% of the time. I fixed all of them and |