diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2010-01-28 00:21:19 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2010-01-28 00:21:19 +0000 |
commit | da391135334b9194ab582832516117f51650666d (patch) | |
tree | 78316da556790a0fd69e2265a5b3d263a2306f07 /usr.bin | |
parent | 42b6e1a0846ffffcf70a6be1d36d391107560dba (diff) |
downgrade an error() to a debug() - this particular case can be hit in
normal operation for certain sequences of mux slave vs session closure
and is harmless
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/clientloop.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/ssh/clientloop.c b/usr.bin/ssh/clientloop.c index dea386675c8..d1e8e0e7a9b 100644 --- a/usr.bin/ssh/clientloop.c +++ b/usr.bin/ssh/clientloop.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clientloop.c,v 1.217 2010/01/26 01:28:35 djm Exp $ */ +/* $OpenBSD: clientloop.c,v 1.218 2010/01/28 00:21:18 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1839,8 +1839,9 @@ client_input_channel_req(int type, u_int32_t seq, void *ctxt) success = 1; exit_status = exitval; } else { - error("client_input_channel_req: unexpected channel %d", - session_ident); + /* Probably for a mux channel that has already closed */ + debug("%s: no sink for exit-status on channel %d", + __func__, id); } packet_check_eom(); } |