diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2010-05-04 17:28:16 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2010-05-04 17:28:16 +0000 |
commit | c4a2fdf15b5f6cd35319e36636b7daee8061c2ab (patch) | |
tree | 078b36e8669e687d32224b9a2239713781d787c5 /cmd-pipe-pane.c | |
parent | af5e0bd15affd358017e43110ac5a6c3b22233bc (diff) | |
download | rtmux-c4a2fdf15b5f6cd35319e36636b7daee8061c2ab.tar.gz rtmux-c4a2fdf15b5f6cd35319e36636b7daee8061c2ab.tar.bz2 rtmux-c4a2fdf15b5f6cd35319e36636b7daee8061c2ab.zip |
Put this back in with the initialisation in the right order.
Diffstat (limited to 'cmd-pipe-pane.c')
-rw-r--r-- | cmd-pipe-pane.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-pipe-pane.c b/cmd-pipe-pane.c index efe79a38..0d7c3ff6 100644 --- a/cmd-pipe-pane.c +++ b/cmd-pipe-pane.c @@ -91,7 +91,7 @@ cmd_pipe_pane_exec(struct cmd *self, struct cmd_ctx *ctx) case 0: /* Child process. */ close(pipe_fd[0]); - server_signal_clear(); + clear_signals(); if (dup2(pipe_fd[1], STDIN_FILENO) == -1) _exit(1); |