mirror of git://anongit.mindrot.org/openssh.git
- stevesk@cvs.openbsd.org 2001/02/21 21:14:04
[ssh.c] -i supports DSA identities now; ok markus@
This commit is contained in:
parent
36592518dd
commit
87af95b3e7
|
@ -13,6 +13,9 @@
|
|||
- deraadt@cvs.openbsd.org 2001/02/21 09:12:56
|
||||
[sftp-server.c]
|
||||
careful with & and &&; markus ok
|
||||
- stevesk@cvs.openbsd.org 2001/02/21 21:14:04
|
||||
[ssh.c]
|
||||
-i supports DSA identities now; ok markus@
|
||||
|
||||
20010304
|
||||
- (bal) Remove make-ssh-known-hosts.1 since it's no longer valid.
|
||||
|
@ -4205,4 +4208,4 @@
|
|||
- Wrote replacements for strlcpy and mkdtemp
|
||||
- Released 1.0pre1
|
||||
|
||||
$Id: ChangeLog,v 1.855 2001/03/05 05:02:08 mouring Exp $
|
||||
$Id: ChangeLog,v 1.856 2001/03/05 05:04:57 mouring Exp $
|
||||
|
|
5
ssh.c
5
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>
|
||||
|
@ -161,7 +161,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");
|
||||
|
|
Loading…
Reference in New Issue