summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/evp/encode.c
diff options
context:
space:
mode:
authorjsing <>2014-05-15 15:55:55 +0000
committerjsing <>2014-05-15 15:55:55 +0000
commitacd64e2a77c730df16340e358d455b1df58d9c01 (patch)
treee37e0f601a72d123cea43d24856ffeafc49ef737 /src/lib/libcrypto/evp/encode.c
parent9252ec493c5adc16409b512b27a4c3362e3f61ae (diff)
downloadopenbsd-acd64e2a77c730df16340e358d455b1df58d9c01.tar.gz
openbsd-acd64e2a77c730df16340e358d455b1df58d9c01.tar.bz2
openbsd-acd64e2a77c730df16340e358d455b1df58d9c01.zip
More KNF.
Diffstat (limited to 'src/lib/libcrypto/evp/encode.c')
-rw-r--r--src/lib/libcrypto/evp/encode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/evp/encode.c b/src/lib/libcrypto/evp/encode.c
index 2268b8d2f2..4307802f56 100644
--- a/src/lib/libcrypto/evp/encode.c
+++ b/src/lib/libcrypto/evp/encode.c
@@ -224,7 +224,7 @@ int
224EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl, 224EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
225 const unsigned char *in, int inl) 225 const unsigned char *in, int inl)
226{ 226{
227 int seof = -1, eof = 0, rv = -1, ret = 0, i,v, tmp, n, ln, exp_nl; 227 int seof = -1, eof = 0, rv = -1, ret = 0, i, v, tmp, n, ln, exp_nl;
228 unsigned char *d; 228 unsigned char *d;
229 229
230 n = ctx->num; 230 n = ctx->num;
@@ -360,7 +360,7 @@ end:
360int 360int
361EVP_DecodeBlock(unsigned char *t, const unsigned char *f, int n) 361EVP_DecodeBlock(unsigned char *t, const unsigned char *f, int n)
362{ 362{
363 int i, ret = 0, a,b, c, d; 363 int i, ret = 0, a, b, c, d;
364 unsigned long l; 364 unsigned long l;
365 365
366 /* trim white space from the start of the line. */ 366 /* trim white space from the start of the line. */