[ssh.c]
     add smartcard to usage(). ok markus@
This commit is contained in:
Ben Lindstrom 2001-08-06 21:53:42 +00:00
parent a1ec4a9cb8
commit 61eb9568b3
2 changed files with 8 additions and 2 deletions

View File

@ -116,6 +116,9 @@
- jakob@cvs.openbsd.org 2001/08/02 15:07:23
[ssh-keygen.1]
document smartcard upload/download. ok markus@
- jakob@cvs.openbsd.org 2001/08/02 15:32:10
[ssh.c]
add smartcard to usage(). ok markus@
20010803
- (djm) Fix interrupted read in entropy gatherer. Spotted by markus@ on
@ -6226,4 +6229,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
$Id: ChangeLog,v 1.1456 2001/08/06 21:51:34 mouring Exp $
$Id: ChangeLog,v 1.1457 2001/08/06 21:53:42 mouring Exp $

5
ssh.c
View File

@ -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>
@ -169,6 +169,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");