diff options
-rw-r--r-- | usr.bin/ssh/readconf.c | 4 | ||||
-rw-r--r-- | usr.bin/ssh/ssh.1 | 4 | ||||
-rw-r--r-- | usr.bin/ssh/ssh.c | 3 |
3 files changed, 7 insertions, 4 deletions
diff --git a/usr.bin/ssh/readconf.c b/usr.bin/ssh/readconf.c index 32afcdd54d7..e9c8455bf10 100644 --- a/usr.bin/ssh/readconf.c +++ b/usr.bin/ssh/readconf.c @@ -14,7 +14,7 @@ */ #include "includes.h" -RCSID("$Id: readconf.c,v 1.22 1999/12/01 13:59:15 markus Exp $"); +RCSID("$Id: readconf.c,v 1.23 2000/02/28 19:51:58 markus Exp $"); #include "ssh.h" #include "cipher.h" @@ -638,7 +638,7 @@ fill_default_options(Options * options) if (options->forward_agent == -1) options->forward_agent = 1; if (options->forward_x11 == -1) - options->forward_x11 = 1; + options->forward_x11 = 0; if (options->gateway_ports == -1) options->gateway_ports = 0; if (options->use_privileged_port == -1) diff --git a/usr.bin/ssh/ssh.1 b/usr.bin/ssh/ssh.1 index 9851702e0b9..dea19bb7c3f 100644 --- a/usr.bin/ssh/ssh.1 +++ b/usr.bin/ssh/ssh.1 @@ -9,7 +9,7 @@ .\" .\" Created: Sat Apr 22 21:55:14 1995 ylo .\" -.\" $Id: ssh.1,v 1.37 2000/02/21 14:19:09 deraadt Exp $ +.\" $Id: ssh.1,v 1.38 2000/02/28 19:51:58 markus Exp $ .\" .Dd September 25, 1999 .Dt SSH 1 @@ -557,6 +557,8 @@ set. The argument must be .Dq yes or .Dq no . +The default is +.Dq no . .It Cm GatewayPorts Specifies whether remote hosts are allowed to connect to local forwarded ports. diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index f42fcb6a384..957acc4dbd0 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -11,7 +11,7 @@ */ #include "includes.h" -RCSID("$Id: ssh.c,v 1.40 2000/02/20 20:05:19 markus Exp $"); +RCSID("$Id: ssh.c,v 1.41 2000/02/28 19:51:58 markus Exp $"); #include "xmalloc.h" #include "ssh.h" @@ -93,6 +93,7 @@ usage() fprintf(stderr, " -k Disable Kerberos ticket and AFS token forwarding.\n"); #endif /* AFS */ fprintf(stderr, " -x Disable X11 connection forwarding.\n"); + fprintf(stderr, " -X Enable X11 connection forwarding.\n"); fprintf(stderr, " -i file Identity for RSA authentication (default: ~/.ssh/identity).\n"); fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n"); fprintf(stderr, " -v Verbose; display verbose debugging messages.\n"); |