Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 14 Apr 2013 12:55:39 +0000 (UTC)
From:      Dag-Erling Smørgrav <des@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org
Subject:   svn commit: r249474 - vendor-crypto/openssh/dist
Message-ID:  <201304141255.r3ECtdgg080104@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: des
Date: Sun Apr 14 12:55:39 2013
New Revision: 249474
URL: http://svnweb.freebsd.org/changeset/base/249474

Log:
  Apply a patch from OpenSSH bugzilla #2057 to silence "received disconnect"
  errors in the common case (i.e. client intentionally disconnected).

Modified:
  vendor-crypto/openssh/dist/packet.c

Modified: vendor-crypto/openssh/dist/packet.c
==============================================================================
--- vendor-crypto/openssh/dist/packet.c	Sun Apr 14 12:20:13 2013	(r249473)
+++ vendor-crypto/openssh/dist/packet.c	Sun Apr 14 12:55:39 2013	(r249474)
@@ -1460,7 +1460,11 @@ packet_read_poll_seqnr(u_int32_t *seqnr_
 			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_DEBUG1 : SYSLOG_LEVEL_ERROR,
+				    "Received disconnect from %s: %u: %.400s",
 				    get_remote_ipaddr(), reason, msg);
 				xfree(msg);
 				cleanup_exit(255);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201304141255.r3ECtdgg080104>