diff options
author | Darren Tucker <dtucker@cvs.openbsd.org> | 2010-10-12 02:22:25 +0000 |
---|---|---|
committer | Darren Tucker <dtucker@cvs.openbsd.org> | 2010-10-12 02:22:25 +0000 |
commit | c2672c01f315bec8cfcd3213bc39c3ebba8c5071 (patch) | |
tree | e98ca979f0a6032488a8e96e74f9f770d4cc3f57 | |
parent | a00c37d04e43794430c084035699e18c19d2826a (diff) |
Typo in confirmation message. bz#1827, patch from imorgan at nas nasa gov
-rw-r--r-- | usr.bin/ssh/mux.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/mux.c b/usr.bin/ssh/mux.c index 6418383de29..4ea71e307ae 100644 --- a/usr.bin/ssh/mux.c +++ b/usr.bin/ssh/mux.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mux.c,v 1.22 2010/09/20 07:19:27 djm Exp $ */ +/* $OpenBSD: mux.c,v 1.23 2010/10/12 02:22:24 dtucker Exp $ */ /* * Copyright (c) 2002-2008 Damien Miller <djm@openbsd.org> * @@ -862,7 +862,7 @@ process_mux_stdio_fwd(u_int rid, Channel *c, Buffer *m, Buffer *r) if (options.control_master == SSHCTL_MASTER_ASK || options.control_master == SSHCTL_MASTER_AUTO_ASK) { - if (!ask_permission("Allow forward to to %s:%u? ", + if (!ask_permission("Allow forward to %s:%u? ", chost, cport)) { debug2("%s: stdio fwd refused by user", __func__); /* prepare reply */ |