diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | mux.c | 4 |
2 files changed, 5 insertions, 2 deletions
@@ -81,6 +81,9 @@ | |||
81 | - djm@cvs.openbsd.org 2013/04/19 12:07:08 | 81 | - djm@cvs.openbsd.org 2013/04/19 12:07:08 |
82 | [kex.c] | 82 | [kex.c] |
83 | remove duplicated list entry pointed out by naddy@ | 83 | remove duplicated list entry pointed out by naddy@ |
84 | - dtucker@cvs.openbsd.org 2013/04/22 01:17:18 | ||
85 | [mux.c] | ||
86 | typo in debug output: evitval->exitval | ||
84 | 87 | ||
85 | 20130418 | 88 | 20130418 |
86 | - (djm) [config.guess config.sub] Update to last versions before they switch | 89 | - (djm) [config.guess config.sub] Update to last versions before they switch |
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: mux.c,v 1.39 2013/04/05 00:58:51 djm Exp $ */ | 1 | /* $OpenBSD: mux.c,v 1.40 2013/04/22 01:17:18 dtucker Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2002-2008 Damien Miller <djm@openbsd.org> | 3 | * Copyright (c) 2002-2008 Damien Miller <djm@openbsd.org> |
4 | * | 4 | * |
@@ -1101,7 +1101,7 @@ mux_exit_message(Channel *c, int exitval) | |||
1101 | Buffer m; | 1101 | Buffer m; |
1102 | Channel *mux_chan; | 1102 | Channel *mux_chan; |
1103 | 1103 | ||
1104 | debug3("%s: channel %d: exit message, evitval %d", __func__, c->self, | 1104 | debug3("%s: channel %d: exit message, exitval %d", __func__, c->self, |
1105 | exitval); | 1105 | exitval); |
1106 | 1106 | ||
1107 | if ((mux_chan = channel_by_id(c->ctl_chan)) == NULL) | 1107 | if ((mux_chan = channel_by_id(c->ctl_chan)) == NULL) |