summaryrefslogtreecommitdiff
path: root/src/test/test-pty.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/test-pty.c')
-rw-r--r--src/test/test-pty.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/test-pty.c b/src/test/test-pty.c
index b5f4d4f094..3f97a64ccd 100644
--- a/src/test/test-pty.c
+++ b/src/test/test-pty.c
@@ -27,6 +27,7 @@
#include "pty.h"
#include "util.h"
+#include "signal-util.h"
static const char sndmsg[] = "message\n";
static const char rcvmsg[] = "message\r\n";
@@ -128,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