diff options
author | 2017-01-29 21:35:23 +0000 | |
---|---|---|
committer | 2017-01-29 21:35:23 +0000 | |
commit | 22cf754dec60a997f43b5063232f9e86aa198209 (patch) | |
tree | b95c88b5eaf6f7dd381d21d26c90f1cd5328f0e0 | |
parent | Document restrictions that apply to COMMENT (diff) | |
download | wireguard-openbsd-22cf754dec60a997f43b5063232f9e86aa198209.tar.xz wireguard-openbsd-22cf754dec60a997f43b5063232f9e86aa198209.zip |
Fix typo in ~C error message for bad port forward cancellation.
bz#2672, from Brad Marshall via Colin Watson and Ubuntu's bugtracker.
-rw-r--r-- | usr.bin/ssh/clientloop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/clientloop.c b/usr.bin/ssh/clientloop.c index e6ff67d846a..7a2cb8bb719 100644 --- a/usr.bin/ssh/clientloop.c +++ b/usr.bin/ssh/clientloop.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clientloop.c,v 1.289 2016/09/30 09:19:13 markus Exp $ */ +/* $OpenBSD: clientloop.c,v 1.290 2017/01/29 21:35:23 dtucker Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -982,7 +982,7 @@ process_cmdline(void) CHANNEL_CANCEL_PORT_STATIC, &options.fwd_opts) > 0; if (!ok) { - logit("Unkown port forwarding."); + logit("Unknown port forwarding."); goto out; } logit("Canceled forwarding."); |