summaryrefslogtreecommitdiff
path: root/clientloop.c
diff options
context:
space:
mode:
authordtucker@openbsd.org <dtucker@openbsd.org>2017-01-29 21:35:23 +0000
committerDamien Miller <djm@mindrot.org>2017-01-30 11:07:45 +1100
commit9390b0031ebd6eb5488d3bc4d4333c528dffc0a6 (patch)
tree29cc269436d68e0c7869d9c3b6e92d3fbddb950a /clientloop.c
parent4ba15462ca38883b8a61a1eccc093c79462d5414 (diff)
upstream commit
Fix typo in ~C error message for bad port forward cancellation. bz#2672, from Brad Marshall via Colin Watson and Ubuntu's bugtracker. Upstream-ID: 0d4a7e5ead6cc59c9a44b4c1e5435ab3aada09af
Diffstat (limited to 'clientloop.c')
-rw-r--r--clientloop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/clientloop.c b/clientloop.c
index 4289a4081..c6a41386d 100644
--- a/clientloop.c
+++ b/clientloop.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: clientloop.c,v 1.289 2016/09/30 09:19:13 markus Exp $ */ 1/* $OpenBSD: clientloop.c,v 1.290 2017/01/29 21:35:23 dtucker Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -991,7 +991,7 @@ process_cmdline(void)
991 CHANNEL_CANCEL_PORT_STATIC, 991 CHANNEL_CANCEL_PORT_STATIC,
992 &options.fwd_opts) > 0; 992 &options.fwd_opts) > 0;
993 if (!ok) { 993 if (!ok) {
994 logit("Unkown port forwarding."); 994 logit("Unknown port forwarding.");
995 goto out; 995 goto out;
996 } 996 }
997 logit("Canceled forwarding."); 997 logit("Canceled forwarding.");