diff options
author | 2001-12-05 10:06:12 +0000 | |
---|---|---|
committer | 2001-12-05 10:06:12 +0000 | |
commit | 5cf0410b14f7dd265c6caf5e58231e02729f4650 (patch) | |
tree | c72360a0037e2328eab1278dcefd1506ebf0cab1 /usr.bin/ssh/ssh-keygen.c | |
parent | this stuff is supplied by -lrpcsvc (diff) | |
download | wireguard-openbsd-5cf0410b14f7dd265c6caf5e58231e02729f4650.tar.xz wireguard-openbsd-5cf0410b14f7dd265c6caf5e58231e02729f4650.zip |
minor KNF
Diffstat (limited to 'usr.bin/ssh/ssh-keygen.c')
-rw-r--r-- | usr.bin/ssh/ssh-keygen.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c index 6dd3213d2a8..cc5b5745679 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.84 2001/11/17 19:14:34 stevesk Exp $"); +RCSID("$OpenBSD: ssh-keygen.c,v 1.85 2001/12/05 10:06:12 deraadt Exp $"); #include <openssl/evp.h> #include <openssl/pem.h> @@ -268,7 +268,7 @@ do_convert_private_ssh2_from_blob(u_char *blob, int blen) break; } rlen = buffer_len(&b); - if(rlen != 0) + if (rlen != 0) error("do_convert_private_ssh2_from_blob: " "remaining bytes in key blob %d", rlen); buffer_free(&b); @@ -389,7 +389,7 @@ do_print_public(struct passwd *pw) debug("#bytes %d", len); \ if (BN_bn2bin(prv->rsa->x, elements[i]) < 0) \ goto done; \ - } while(0) + } while (0) static int get_AUT0(char *aut0) |