diff options
author | 2001-08-02 15:32:10 +0000 | |
---|---|---|
committer | 2001-08-02 15:32:10 +0000 | |
commit | af2a19d00b647d2b5152d1c82d4b6cb7fa498571 (patch) | |
tree | 05fe534312f861de2623d3406f4ab446c15ef1f4 /usr.bin/ssh/ssh.c | |
parent | add Palm version of sectok_dump_reply() (diff) | |
download | wireguard-openbsd-af2a19d00b647d2b5152d1c82d4b6cb7fa498571.tar.xz wireguard-openbsd-af2a19d00b647d2b5152d1c82d4b6cb7fa498571.zip |
add smartcard to usage(). ok markus@
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r-- | usr.bin/ssh/ssh.c | 5 |
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"); |