diff options
author | 2001-10-24 08:51:35 +0000 | |
---|---|---|
committer | 2001-10-24 08:51:35 +0000 | |
commit | bc4ebffa269631aafaf5800a16301d1b631256a3 (patch) | |
tree | 215106f473ed2fccfb8acceaf8b621086fc5804a /usr.bin/ssh/clientloop.c | |
parent | mention remote port in debug message (diff) | |
download | wireguard-openbsd-bc4ebffa269631aafaf5800a16301d1b631256a3.tar.xz wireguard-openbsd-bc4ebffa269631aafaf5800a16301d1b631256a3.zip |
ignore SIGPIPE early, makes ssh work if agent dies, netbsd-pr via itojun@
Diffstat (limited to 'usr.bin/ssh/clientloop.c')
-rw-r--r-- | usr.bin/ssh/clientloop.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/ssh/clientloop.c b/usr.bin/ssh/clientloop.c index 0e477bc7936..7e6fe269ab1 100644 --- a/usr.bin/ssh/clientloop.c +++ b/usr.bin/ssh/clientloop.c @@ -59,7 +59,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: clientloop.c,v 1.84 2001/10/11 15:24:00 markus Exp $"); +RCSID("$OpenBSD: clientloop.c,v 1.85 2001/10/24 08:51:35 markus Exp $"); #include "ssh.h" #include "ssh1.h" @@ -820,7 +820,6 @@ client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id) signal(SIGINT, signal_handler); signal(SIGQUIT, signal_handler); signal(SIGTERM, signal_handler); - signal(SIGPIPE, SIG_IGN); if (have_pty) signal(SIGWINCH, window_change_handler); |