]> andersk Git - openssh.git/commitdiff
- djm@cvs.openbsd.org 2006/06/26 10:36:15
authordjm <djm>
Mon, 10 Jul 2006 10:16:12 +0000 (10:16 +0000)
committerdjm <djm>
Mon, 10 Jul 2006 10:16:12 +0000 (10:16 +0000)
     [clientloop.c]
     mention optional bind_address in runtime port forwarding setup
     command-line help. patch from santhi.amirta AT gmail.com

ChangeLog
clientloop.c

index 2c6b68e9124f5117fe32a4fcbba3070bd0f1cf75..8bca49c8807ce9d8187e75a1546f76f40d8e7352 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,10 @@
    - djm@cvs.openbsd.org 2006/06/14 10:50:42
      [sshconnect.c]
      limit the number of pre-banner characters we will accept; ok markus@
+   - djm@cvs.openbsd.org 2006/06/26 10:36:15
+     [clientloop.c]
+     mention optional bind_address in runtime port forwarding setup
+     command-line help. patch from santhi.amirta AT gmail.com
 
 20060706
  - (dtucker) [configure.ac] Try AIX blibpath test in different order when
index a9572134a6a8d90f987955184b25472a3dff3440..b99ba03c062d60c62fce7b7dd0578b80b0b2f823 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: clientloop.c,v 1.163 2006/05/16 09:00:00 markus Exp $ */
+/* $OpenBSD: clientloop.c,v 1.164 2006/06/26 10:36:15 djm Exp $ */
 /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -925,12 +925,16 @@ process_cmdline(void)
 
        if (*s == 'h' || *s == 'H' || *s == '?') {
                logit("Commands:");
-               logit("      -Lport:host:hostport    Request local forward");
-               logit("      -Rport:host:hostport    Request remote forward");
-               logit("      -KRhostport             Cancel remote forward");
+               logit("      -L[bind_address:]port:host:hostport    "
+                   "Request local forward");
+               logit("      -R[bind_address:]port:host:hostport    "
+                   "Request remote forward");
+               logit("      -KR[bind_address:]hostport             "
+                   "Cancel remote forward");
                if (!options.permit_local_command)
                        goto out;
-               logit("      !args                   Execute local command");
+               logit("      !args                                  "
+                   "Execute local command");
                goto out;
        }
 
This page took 0.110515 seconds and 5 git commands to generate.