diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2001-02-21 21:14:05 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2001-02-21 21:14:05 +0000 |
commit | 6c09af5e21c540ce7f31b96b12259fbecfb4c823 (patch) | |
tree | 9f67eac210185ccceb4a457e27aebf0b3e14200f | |
parent | adbbba3fc1d192c8028be0a231833f687c0e5eee (diff) |
-i supports DSA identities now; ok markus@
-rw-r--r-- | usr.bin/ssh/ssh.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index 23b98a43477..191e5c8343c 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -39,7 +39,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh.c,v 1.96 2001/02/17 23:28:58 deraadt Exp $"); +RCSID("$OpenBSD: ssh.c,v 1.97 2001/02/21 21:14:04 stevesk Exp $"); #include <openssl/evp.h> #include <openssl/err.h> @@ -153,7 +153,8 @@ usage(void) #endif /* AFS */ fprintf(stderr, " -X Enable X11 connection forwarding.\n"); fprintf(stderr, " -x Disable X11 connection forwarding.\n"); - fprintf(stderr, " -i file Identity for RSA authentication (default: ~/.ssh/identity).\n"); + fprintf(stderr, " -i file Identity for public key authentication\n"); + fprintf(stderr, " (default: ~/.ssh/identity).\n"); fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n"); fprintf(stderr, " -T Do not allocate a tty.\n"); fprintf(stderr, " -v Verbose; display verbose debugging messages.\n"); |