From c4a2fdf15b5f6cd35319e36636b7daee8061c2ab Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Tue, 4 May 2010 17:28:16 +0000 Subject: Put this back in with the initialisation in the right order. --- cmd-pipe-pane.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd-pipe-pane.c') 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); -- cgit