diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2000-02-28 19:51:59 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2000-02-28 19:51:59 +0000 |
commit | aae1e637fd26b92070abe1722bbd9c812c2af9b3 (patch) | |
tree | 0b145c12e05d660cba5ee32e55b2c22b65827c32 /usr.bin/ssh/ssh.c | |
parent | cc565a5756cc8aec8fb67238ca5fedf3277b3d47 (diff) |
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"); |