mirror of git://anongit.mindrot.org/openssh.git
- dtucker@cvs.openbsd.org 2013/04/22 01:17:18
[mux.c] typo in debug output: evitval->exitval
This commit is contained in:
parent
f8b894e31d
commit
bc02f163f6
|
@ -81,6 +81,9 @@
|
||||||
- djm@cvs.openbsd.org 2013/04/19 12:07:08
|
- djm@cvs.openbsd.org 2013/04/19 12:07:08
|
||||||
[kex.c]
|
[kex.c]
|
||||||
remove duplicated list entry pointed out by naddy@
|
remove duplicated list entry pointed out by naddy@
|
||||||
|
- dtucker@cvs.openbsd.org 2013/04/22 01:17:18
|
||||||
|
[mux.c]
|
||||||
|
typo in debug output: evitval->exitval
|
||||||
|
|
||||||
20130418
|
20130418
|
||||||
- (djm) [config.guess config.sub] Update to last versions before they switch
|
- (djm) [config.guess config.sub] Update to last versions before they switch
|
||||||
|
|
4
mux.c
4
mux.c
|
@ -1,4 +1,4 @@
|
||||||
/* $OpenBSD: mux.c,v 1.39 2013/04/05 00:58:51 djm Exp $ */
|
/* $OpenBSD: mux.c,v 1.40 2013/04/22 01:17:18 dtucker Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2002-2008 Damien Miller <djm@openbsd.org>
|
* Copyright (c) 2002-2008 Damien Miller <djm@openbsd.org>
|
||||||
*
|
*
|
||||||
|
@ -1101,7 +1101,7 @@ mux_exit_message(Channel *c, int exitval)
|
||||||
Buffer m;
|
Buffer m;
|
||||||
Channel *mux_chan;
|
Channel *mux_chan;
|
||||||
|
|
||||||
debug3("%s: channel %d: exit message, evitval %d", __func__, c->self,
|
debug3("%s: channel %d: exit message, exitval %d", __func__, c->self,
|
||||||
exitval);
|
exitval);
|
||||||
|
|
||||||
if ((mux_chan = channel_by_id(c->ctl_chan)) == NULL)
|
if ((mux_chan = channel_by_id(c->ctl_chan)) == NULL)
|
||||||
|
|
Loading…
Reference in New Issue