summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorJakob Schlyter <jakob@cvs.openbsd.org>2001-08-02 15:32:11 +0000
committerJakob Schlyter <jakob@cvs.openbsd.org>2001-08-02 15:32:11 +0000
commitaefaefb7fe94038e1318ff9b0e0cac70d3f44b15 (patch)
treefe1ab3ed768b21ddb5b055992484b903a62b512e /usr.bin
parent6572d3231e1d2176c55c8c6fee5a5ec4e6858a13 (diff)
add smartcard to usage(). ok markus@
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ssh/ssh.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c
index 6f20c7ba2a1..b99a67e18cd 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.134 2001/08/01 23:38:45 markus Exp $");
+RCSID("$OpenBSD: ssh.c,v 1.135 2001/08/02 15:32:10 jakob Exp $");
#include <openssl/evp.h>
#include <openssl/err.h>
@@ -161,6 +161,9 @@ usage(void)
fprintf(stderr, " -x Disable X11 connection forwarding (default).\n");
fprintf(stderr, " -i file Identity for public key authentication "
"(default: ~/.ssh/identity)\n");
+#ifdef SMARTCARD
+ fprintf(stderr, " -I reader Set smartcard reader.\n");
+#endif /* SMARTCARD */
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");