summaryrefslogtreecommitdiff
path: root/usr.bin/ssh
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@cvs.openbsd.org>2013-04-22 01:17:19 +0000
committerDarren Tucker <dtucker@cvs.openbsd.org>2013-04-22 01:17:19 +0000
commit35b0bd45537346a3b439084a1072728e59d5a219 (patch)
tree54cec58472de2537961a7d1bf8ebfa3a0f92d445 /usr.bin/ssh
parent0ed8e3acca8336df6040e6ffb6a539358cee429c (diff)
typo in debug output: evitval->exitval
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r--usr.bin/ssh/mux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/mux.c b/usr.bin/ssh/mux.c
index b73298ca152..2460db75f96 100644
--- a/usr.bin/ssh/mux.c
+++ b/usr.bin/ssh/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>
*
@@ -1088,7 +1088,7 @@ mux_exit_message(Channel *c, int exitval)
Buffer m;
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);
if ((mux_chan = channel_by_id(c->ctl_chan)) == NULL)