- 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
This commit is contained in:
parent
19d32cb934
commit
36f57ebf3b
|
@ -1,3 +1,11 @@
|
||||||
|
20100130
|
||||||
|
- (djm) OpenBSD CVS Sync
|
||||||
|
- 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
|
||||||
|
|
||||||
20100129
|
20100129
|
||||||
- (dtucker) [openbsd-compat/openssl-compat.c] Bug #1707: Call OPENSSL_config()
|
- (dtucker) [openbsd-compat/openssl-compat.c] Bug #1707: Call OPENSSL_config()
|
||||||
after registering the hardware engines, which causes the openssl.cnf file to
|
after registering the hardware engines, which causes the openssl.cnf file to
|
||||||
|
|
|
@ -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>
|
* 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
|
||||||
|
@ -1857,8 +1857,9 @@ client_input_channel_req(int type, u_int32_t seq, void *ctxt)
|
||||||
success = 1;
|
success = 1;
|
||||||
exit_status = exitval;
|
exit_status = exitval;
|
||||||
} else {
|
} else {
|
||||||
error("client_input_channel_req: unexpected channel %d",
|
/* Probably for a mux channel that has already closed */
|
||||||
session_ident);
|
debug("%s: no sink for exit-status on channel %d",
|
||||||
|
__func__, id);
|
||||||
}
|
}
|
||||||
packet_check_eom();
|
packet_check_eom();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue