diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | clientloop.c | 4 |
2 files changed, 6 insertions, 3 deletions
@@ -14,6 +14,9 @@ | |||
14 | few missing flags; add 'bye' to the output of 'help'; sorting and spacing. | 14 | few missing flags; add 'bye' to the output of 'help'; sorting and spacing. |
15 | jmc@ suggested replacing .Oo/.Oc with a single .Op macro. | 15 | jmc@ suggested replacing .Oo/.Oc with a single .Op macro. |
16 | ok jmc@ | 16 | ok jmc@ |
17 | - stevesk@cvs.openbsd.org 2008/12/09 22:37:33 | ||
18 | [clientloop.c] | ||
19 | fix typo in error message | ||
17 | 20 | ||
18 | 20090107 | 21 | 20090107 |
19 | - (djm) [uidswap.c] bz#1412: Support >16 supplemental groups in OS X. | 22 | - (djm) [uidswap.c] bz#1412: Support >16 supplemental groups in OS X. |
@@ -5023,5 +5026,5 @@ | |||
5023 | OpenServer 6 and add osr5bigcrypt support so when someone migrates | 5026 | OpenServer 6 and add osr5bigcrypt support so when someone migrates |
5024 | passwords between UnixWare and OpenServer they will still work. OK dtucker@ | 5027 | passwords between UnixWare and OpenServer they will still work. OK dtucker@ |
5025 | 5028 | ||
5026 | $Id: ChangeLog,v 1.5163 2009/01/28 05:14:09 djm Exp $ | 5029 | $Id: ChangeLog,v 1.5164 2009/01/28 05:15:30 djm Exp $ |
5027 | 5030 | ||
diff --git a/clientloop.c b/clientloop.c index 0d228421c..fdeedc351 100644 --- a/clientloop.c +++ b/clientloop.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: clientloop.c,v 1.206 2008/12/09 02:38:18 djm Exp $ */ | 1 | /* $OpenBSD: clientloop.c,v 1.207 2008/12/09 22:37:33 stevesk 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 |
@@ -1728,7 +1728,7 @@ client_request_tun_fwd(int tun_mode, int local_tun, int remote_tun) | |||
1728 | return 0; | 1728 | return 0; |
1729 | 1729 | ||
1730 | if (!compat20) { | 1730 | if (!compat20) { |
1731 | error("Tunnel forwarding is not support for protocol 1"); | 1731 | error("Tunnel forwarding is not supported for protocol 1"); |
1732 | return -1; | 1732 | return -1; |
1733 | } | 1733 | } |
1734 | 1734 | ||