diff options
author | Niels Provos <provos@cvs.openbsd.org> | 1999-09-29 11:45:51 +0000 |
---|---|---|
committer | Niels Provos <provos@cvs.openbsd.org> | 1999-09-29 11:45:51 +0000 |
commit | c1fbe489bc9d8d6bfce6213c251cabe36c5b148a (patch) | |
tree | 12a020b0f82746ac536d7649a6c0b866affcb266 /usr.bin | |
parent | 04a7fe838f980ecb5202b0c213e9c2d23a680af3 (diff) |
correct the usage, disable agent forwarding is -a
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/ssh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index 57596041028..4d203366d4f 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -18,7 +18,7 @@ Modified to work with SSL by Niels Provos <provos@citi.umich.edu> in Canada. */ #include "includes.h" -RCSID("$Id: ssh.c,v 1.6 1999/09/29 06:15:18 deraadt Exp $"); +RCSID("$Id: ssh.c,v 1.7 1999/09/29 11:45:50 provos Exp $"); #include "xmalloc.h" #include "ssh.h" @@ -87,7 +87,7 @@ usage() fprintf(stderr, "Options:\n"); fprintf(stderr, " -l user Log in using this user name.\n"); fprintf(stderr, " -n Redirect input from /dev/null.\n"); - fprintf(stderr, " -k Disable authentication agent forwarding.\n"); + fprintf(stderr, " -a Disable authentication agent forwarding.\n"); #if defined(KERBEROS_TGT_PASSING) || defined(AFS) fprintf(stderr, " This also disables passing of AFS tokens/Kerberos tickets.\n"); #endif /* KERBEROS_TGT_PASSING || AFS */ |