diff options
author | 2001-11-17 19:14:34 +0000 | |
---|---|---|
committer | 2001-11-17 19:14:34 +0000 | |
commit | c899db42feeb5c6185baa0076345bcf478a0b56a (patch) | |
tree | e28210b3e3cf01f8f75f74bd0dcc627956f94510 /usr.bin/ssh/ssh-keygen.c | |
parent | properly bail out of incfile(); millert ok (diff) | |
download | wireguard-openbsd-c899db42feeb5c6185baa0076345bcf478a0b56a.tar.xz wireguard-openbsd-c899db42feeb5c6185baa0076345bcf478a0b56a.zip |
enum/int type cleanup where it made sense to do so; ok markus@
Diffstat (limited to 'usr.bin/ssh/ssh-keygen.c')
-rw-r--r-- | usr.bin/ssh/ssh-keygen.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c index 1da93541397..6dd3213d2a8 100644 --- a/usr.bin/ssh/ssh-keygen.c +++ b/usr.bin/ssh/ssh-keygen.c @@ -12,7 +12,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh-keygen.c,v 1.83 2001/10/25 21:14:32 markus Exp $"); +RCSID("$OpenBSD: ssh-keygen.c,v 1.84 2001/11/17 19:14:34 stevesk Exp $"); #include <openssl/evp.h> #include <openssl/pem.h> @@ -530,7 +530,9 @@ do_fingerprint(struct passwd *pw) FILE *f; Key *public; char *comment = NULL, *cp, *ep, line[16*1024], *fp; - int i, skip = 0, num = 1, invalid = 1, rep, fptype; + int i, skip = 0, num = 1, invalid = 1; + enum fp_rep rep; + enum fp_type fptype; struct stat st; fptype = print_bubblebabble ? SSH_FP_SHA1 : SSH_FP_MD5; |