diff options
author | dtucker@openbsd.org <dtucker@openbsd.org> | 2015-02-12 21:34:19 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2015-02-16 23:32:30 +0100 |
commit | 8ec67d505bd23c8bf9e17b7a364b563a07a58ec8 (patch) | |
tree | f56c6f724fd84ab3edc35ed99aae62e012bcf2a7 | |
parent | upstream commit (diff) | |
download | openssh-8ec67d505bd23c8bf9e17b7a364b563a07a58ec8.tar.xz openssh-8ec67d505bd23c8bf9e17b7a364b563a07a58ec8.zip |
upstream commit
Prevent sshd spamming syslog with
"ssh_dispatch_run_fatal: disconnected". ok markus@
-rw-r--r-- | dispatch.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/dispatch.c b/dispatch.c index 900a2c10c..afe618221 100644 --- a/dispatch.c +++ b/dispatch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dispatch.c,v 1.25 2015/01/30 01:13:33 djm Exp $ */ +/* $OpenBSD: dispatch.c,v 1.26 2015/02/12 20:34:19 dtucker Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. * @@ -147,6 +147,10 @@ ssh_dispatch_run_fatal(struct ssh *ssh, int mode, volatile sig_atomic_t *done, logit("Connection to %.200s timed out while " "waiting to read", ssh_remote_ipaddr(ssh)); cleanup_exit(255); + case SSH_ERR_DISCONNECTED: + logit("Disconnected from %.200s", + ssh_remote_ipaddr(ssh)); + cleanup_exit(255); default: fatal("%s: %s", __func__, ssh_err(r)); } |