summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@cvs.openbsd.org>2010-01-30 02:54:54 +0000
committerDamien Miller <djm@cvs.openbsd.org>2010-01-30 02:54:54 +0000
commit8e0ddfe0bf990489c67ff9e1fd28edbffd463c48 (patch)
tree0689a6d0e8433eadff435c24ada0c96483191443
parent2ff7857928eae484e5c3a43d522bd04afce19c75 (diff)
don't mark channel as read failed if it is already closing; suppresses
harmless error messages when connecting to SSH.COM Tectia server report by imorgan AT nas.nasa.gov
-rw-r--r--usr.bin/ssh/mux.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.bin/ssh/mux.c b/usr.bin/ssh/mux.c
index 4761d348b06..ef8e20acacf 100644
--- a/usr.bin/ssh/mux.c
+++ b/usr.bin/ssh/mux.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mux.c,v 1.13 2010/01/29 20:16:17 djm Exp $ */
+/* $OpenBSD: mux.c,v 1.14 2010/01/30 02:54:53 djm Exp $ */
/*
* Copyright (c) 2002-2008 Damien Miller <djm@openbsd.org>
*
@@ -197,8 +197,10 @@ mux_master_control_cleanup_cb(int cid, void *unused)
debug2("%s: channel %d: not open", __func__, sc->self);
chan_mark_dead(sc);
} else {
- chan_read_failed(sc);
- chan_write_failed(sc);
+ if (sc->istate == CHAN_INPUT_OPEN)
+ chan_read_failed(sc);
+ if (sc->ostate == CHAN_OUTPUT_OPEN)
+ chan_write_failed(sc);
}
}
channel_cancel_cleanup(c->self);