summaryrefslogtreecommitdiffstats
path: root/lib/libcrypto/evp/encode.c
diff options
context:
space:
mode:
authorjsing <jsing@openbsd.org>2014-05-15 15:55:55 +0000
committerjsing <jsing@openbsd.org>2014-05-15 15:55:55 +0000
commit596157169defcf90c1ab37c9ccddb0cb6f150a3d (patch)
tree02752cbd2a0a7ea1ce48392414a14c3b6e25228b /lib/libcrypto/evp/encode.c
parentAdd additional chacha20-poly1305 test vectors. (diff)
downloadwireguard-openbsd-596157169defcf90c1ab37c9ccddb0cb6f150a3d.tar.xz
wireguard-openbsd-596157169defcf90c1ab37c9ccddb0cb6f150a3d.zip
More KNF.
Diffstat (limited to 'lib/libcrypto/evp/encode.c')
-rw-r--r--lib/libcrypto/evp/encode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/evp/encode.c b/lib/libcrypto/evp/encode.c
index 2268b8d2f27..4307802f56a 100644
--- a/lib/libcrypto/evp/encode.c
+++ b/lib/libcrypto/evp/encode.c
@@ -224,7 +224,7 @@ int
EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
const unsigned char *in, int inl)
{
- int seof = -1, eof = 0, rv = -1, ret = 0, i,v, tmp, n, ln, exp_nl;
+ int seof = -1, eof = 0, rv = -1, ret = 0, i, v, tmp, n, ln, exp_nl;
unsigned char *d;
n = ctx->num;
@@ -360,7 +360,7 @@ end:
int
EVP_DecodeBlock(unsigned char *t, const unsigned char *f, int n)
{
- int i, ret = 0, a,b, c, d;
+ int i, ret = 0, a, b, c, d;
unsigned long l;
/* trim white space from the start of the line. */