diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2008-12-09 22:37:34 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2008-12-09 22:37:34 +0000 |
commit | c8b81256fa10b9c83d990353743ac5a07d9b6baa (patch) | |
tree | 6aa7f5e984d7da02a25977b6e51a435a86df060f | |
parent | c8b76cd5a63abd7d42595471c5a4743571ab01e0 (diff) |
fix typo in error message
-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 817be09c99b..1b67dae3aaf 100644 --- a/usr.bin/ssh/clientloop.c +++ b/usr.bin/ssh/clientloop.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clientloop.c,v 1.206 2008/12/09 02:38:18 djm Exp $ */ +/* $OpenBSD: clientloop.c,v 1.207 2008/12/09 22:37:33 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1716,7 +1716,7 @@ client_request_tun_fwd(int tun_mode, int local_tun, int remote_tun) return 0; if (!compat20) { - error("Tunnel forwarding is not support for protocol 1"); + error("Tunnel forwarding is not supported for protocol 1"); return -1; } |