diff options
author | 1999-09-29 11:45:50 +0000 | |
---|---|---|
committer | 1999-09-29 11:45:50 +0000 | |
commit | 4abfa5107bcf2ede1e9622014a68ff5f017cf211 (patch) | |
tree | e24ee32a841c675912e7845067b4d00dcf6cfbeb /usr.bin/ssh/ssh.c | |
parent | ssleay->openssl name change. (Wonder what spinoff projects will name it) (diff) | |
download | wireguard-openbsd-4abfa5107bcf2ede1e9622014a68ff5f017cf211.tar.xz wireguard-openbsd-4abfa5107bcf2ede1e9622014a68ff5f017cf211.zip |
correct the usage, disable agent forwarding is -a
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-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 */ |