- djm@cvs.openbsd.org 2008/01/19 20:51:26
[ssh.c] ignore SIGPIPE in multiplex client mode - we can receive this if the server runs out of fds on us midway. Report and patch from gregory_shively AT fanniemae.com
This commit is contained in:
parent
b82f5dd17d
commit
d39a3cffc9
|
@ -14,6 +14,11 @@
|
||||||
[clientloop.c]
|
[clientloop.c]
|
||||||
fd leak on session multiplexing error path. Report and patch from
|
fd leak on session multiplexing error path. Report and patch from
|
||||||
gregory_shively AT fanniemae.com
|
gregory_shively AT fanniemae.com
|
||||||
|
- djm@cvs.openbsd.org 2008/01/19 20:51:26
|
||||||
|
[ssh.c]
|
||||||
|
ignore SIGPIPE in multiplex client mode - we can receive this if the
|
||||||
|
server runs out of fds on us midway. Report and patch from
|
||||||
|
gregory_shively AT fanniemae.com
|
||||||
|
|
||||||
20080119
|
20080119
|
||||||
- (djm) Silence noice from expr in ssh-copy-id; patch from
|
- (djm) Silence noice from expr in ssh-copy-id; patch from
|
||||||
|
@ -3542,4 +3547,4 @@
|
||||||
OpenServer 6 and add osr5bigcrypt support so when someone migrates
|
OpenServer 6 and add osr5bigcrypt support so when someone migrates
|
||||||
passwords between UnixWare and OpenServer they will still work. OK dtucker@
|
passwords between UnixWare and OpenServer they will still work. OK dtucker@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.4822 2008/02/10 11:22:53 djm Exp $
|
$Id: ChangeLog,v 1.4823 2008/02/10 11:23:18 djm Exp $
|
||||||
|
|
4
ssh.c
4
ssh.c
|
@ -1,4 +1,4 @@
|
||||||
/* $OpenBSD: ssh.c,v 1.308 2007/11/03 02:03:49 deraadt Exp $ */
|
/* $OpenBSD: ssh.c,v 1.309 2008/01/19 20:51:26 djm Exp $ */
|
||||||
/*
|
/*
|
||||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||||
|
@ -1393,6 +1393,8 @@ control_client(const char *path)
|
||||||
if (options.forward_agent)
|
if (options.forward_agent)
|
||||||
flags |= SSHMUX_FLAG_AGENT_FWD;
|
flags |= SSHMUX_FLAG_AGENT_FWD;
|
||||||
|
|
||||||
|
signal(SIGPIPE, SIG_IGN);
|
||||||
|
|
||||||
buffer_init(&m);
|
buffer_init(&m);
|
||||||
|
|
||||||
/* Send our command to server */
|
/* Send our command to server */
|
||||||
|
|
Loading…
Reference in New Issue