diff options
author | 2000-02-28 19:51:58 +0000 | |
---|---|---|
committer | 2000-02-28 19:51:58 +0000 | |
commit | 6882ec1b42b35a5799d02aae14502f0f7798d59d (patch) | |
tree | ed51759d9e8862056a8c35c1943a8d290ea22624 /usr.bin/ssh/ssh.c | |
parent | create x11 cookie file (diff) | |
download | wireguard-openbsd-6882ec1b42b35a5799d02aae14502f0f7798d59d.tar.xz wireguard-openbsd-6882ec1b42b35a5799d02aae14502f0f7798d59d.zip |
turn off x11-fwd for the client, too.
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r-- | usr.bin/ssh/ssh.c | 3 |
1 files changed, 2 insertions, 1 deletions
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"); |