summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-08-06 21:53:42 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-08-06 21:53:42 +0000
commit61eb9568b32a0c0d57808f9b7d12231d99220636 (patch)
treeb084126ed09a3c7802cb0149356fe02cc0a0d627 /ssh.c
parenta1ec4a9cb8b2f291780f7a66be967e8e22fc4bde (diff)
- jakob@cvs.openbsd.org 2001/08/02 15:32:10
[ssh.c] add smartcard to usage(). ok markus@
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/ssh.c b/ssh.c
index 185d15e1a..501a4a27b 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.134 2001/08/01 23:38:45 markus Exp $"); 42RCSID("$OpenBSD: ssh.c,v 1.135 2001/08/02 15:32:10 jakob Exp $");
43 43
44#include <openssl/evp.h> 44#include <openssl/evp.h>
45#include <openssl/err.h> 45#include <openssl/err.h>
@@ -169,6 +169,9 @@ usage(void)
169 fprintf(stderr, " -x Disable X11 connection forwarding (default).\n"); 169 fprintf(stderr, " -x Disable X11 connection forwarding (default).\n");
170 fprintf(stderr, " -i file Identity for public key authentication " 170 fprintf(stderr, " -i file Identity for public key authentication "
171 "(default: ~/.ssh/identity)\n"); 171 "(default: ~/.ssh/identity)\n");
172#ifdef SMARTCARD
173 fprintf(stderr, " -I reader Set smartcard reader.\n");
174#endif /* SMARTCARD */
172 fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n"); 175 fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n");
173 fprintf(stderr, " -T Do not allocate a tty.\n"); 176 fprintf(stderr, " -T Do not allocate a tty.\n");
174 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n"); 177 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");