diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2013-04-11 02:27:51 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2013-04-11 02:27:51 +0000 |
commit | 9e3c1392f7809ab7efc773fa34ad7c109c199ff3 (patch) | |
tree | c120b64ffb38dd8a9a5d2b5f27dd5e3a7bd60d1a | |
parent | 51413dc1528c5ef2a0199fcedd276c6542954b92 (diff) |
quiet disconnect notifications on the server from error() back to logit()
if it is a normal client closure; bz#2057 ok+feedback dtucker@
-rw-r--r-- | usr.bin/ssh/packet.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/usr.bin/ssh/packet.c b/usr.bin/ssh/packet.c index 81fb7a917ed..032485d537b 100644 --- a/usr.bin/ssh/packet.c +++ b/usr.bin/ssh/packet.c @@ -1,4 +1,4 @@ -/* $OpenBSD: packet.c,v 1.181 2013/02/10 23:35:24 djm Exp $ */ +/* $OpenBSD: packet.c,v 1.182 2013/04/11 02:27:50 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1448,7 +1448,11 @@ packet_read_poll_seqnr(u_int32_t *seqnr_p) case SSH2_MSG_DISCONNECT: reason = packet_get_int(); msg = packet_get_string(NULL); - error("Received disconnect from %s: %u: %.400s", + /* Ignore normal client exit notifications */ + do_log2(active_state->server_side && + reason == SSH2_DISCONNECT_BY_APPLICATION ? + SYSLOG_LEVEL_INFO : SYSLOG_LEVEL_ERROR, + "Received disconnect from %s: %u: %.400s", get_remote_ipaddr(), reason, msg); xfree(msg); cleanup_exit(255); |