summaryrefslogtreecommitdiff
path: root/ssh-keygen.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-08-06 21:46:54 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-08-06 21:46:54 +0000
commitf19578c447a5a9de60ab6b743ba67836d1f094e3 (patch)
treec253118a83dd7eaa442aa590b6dd1650b2592f83 /ssh-keygen.c
parent8282d6a82f12cd5a3af77599766108177d89283d (diff)
downloadopenssh-git-f19578c447a5a9de60ab6b743ba67836d1f094e3.tar.gz
- jakob@cvs.openbsd.org 2001/08/02 08:58:35
[ssh-keygen.c] change -u (upload smartcard key) to -U. ok markus@
Diffstat (limited to 'ssh-keygen.c')
-rw-r--r--ssh-keygen.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ssh-keygen.c b/ssh-keygen.c
index 096908f3..beffa928 100644
--- a/ssh-keygen.c
+++ b/ssh-keygen.c
@@ -12,7 +12,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: ssh-keygen.c,v 1.75 2001/08/02 00:10:17 markus Exp $");
+RCSID("$OpenBSD: ssh-keygen.c,v 1.76 2001/08/02 08:58:35 jakob Exp $");
#include <openssl/evp.h>
#include <openssl/pem.h>
@@ -831,7 +831,7 @@ main(int ac, char **av)
exit(1);
}
- while ((opt = getopt(ac, av, "deiqpclBRxXyb:f:t:u:D:P:N:C:")) != -1) {
+ while ((opt = getopt(ac, av, "deiqpclBRxXyb:f:t:U:D:P:N:C:")) != -1) {
switch (opt) {
case 'b':
bits = atoi(optarg);
@@ -893,7 +893,7 @@ main(int ac, char **av)
break;
case 'D':
download = 1;
- case 'u':
+ case 'U':
reader_id = optarg;
break;
case '?':