summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-03-05 05:04:57 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-03-05 05:04:57 +0000
commit87af95b3e7a7e7aa3a0f5ef6135b20d28e3a0529 (patch)
tree3de8cb47a97db8a4be80ab72201f4f1198197919 /ssh.c
parent36592518dd0bd975de1534b0cdaee55597dcb3c8 (diff)
- stevesk@cvs.openbsd.org 2001/02/21 21:14:04
[ssh.c] -i supports DSA identities now; ok markus@
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ssh.c b/ssh.c
index 9e5ca116f..7db19f3ba 100644
--- a/ssh.c
+++ b/ssh.c
@@ -39,7 +39,7 @@
39 */ 39 */
40 40
41#include "includes.h" 41#include "includes.h"
42RCSID("$OpenBSD: ssh.c,v 1.96 2001/02/17 23:28:58 deraadt Exp $"); 42RCSID("$OpenBSD: ssh.c,v 1.97 2001/02/21 21:14:04 stevesk Exp $");
43 43
44#include <openssl/evp.h> 44#include <openssl/evp.h>
45#include <openssl/err.h> 45#include <openssl/err.h>
@@ -161,7 +161,8 @@ usage(void)
161#endif /* AFS */ 161#endif /* AFS */
162 fprintf(stderr, " -X Enable X11 connection forwarding.\n"); 162 fprintf(stderr, " -X Enable X11 connection forwarding.\n");
163 fprintf(stderr, " -x Disable X11 connection forwarding.\n"); 163 fprintf(stderr, " -x Disable X11 connection forwarding.\n");
164 fprintf(stderr, " -i file Identity for RSA authentication (default: ~/.ssh/identity).\n"); 164 fprintf(stderr, " -i file Identity for public key authentication\n");
165 fprintf(stderr, " (default: ~/.ssh/identity).\n");
165 fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n"); 166 fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n");
166 fprintf(stderr, " -T Do not allocate a tty.\n"); 167 fprintf(stderr, " -T Do not allocate a tty.\n");
167 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n"); 168 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");