summaryrefslogtreecommitdiff
path: root/clientloop.c
diff options
context:
space:
mode:
authordjm <djm>2010-01-30 06:28:34 +0000
committerdjm <djm>2010-01-30 06:28:34 +0000
commita0d53f39899f31d03182a50b700794aa929334bf (patch)
tree75d39c2aff53038d325a02d307ad5e5a0e4c420d /clientloop.c
parent9c54c4d78f9e0489bf46dbb21377bdb347ec12d2 (diff)
downloadopenssh-a0d53f39899f31d03182a50b700794aa929334bf.tar.gz
- djm@cvs.openbsd.org 2010/01/28 00:21:18
[clientloop.c] 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 'clientloop.c')
-rw-r--r--clientloop.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/clientloop.c b/clientloop.c
index 05f4720a..6ffef95a 100644
--- a/clientloop.c
+++ b/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
@@ -1857,8 +1857,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();
}