diff options
author | jsing <> | 2014-05-15 15:55:55 +0000 |
---|---|---|
committer | jsing <> | 2014-05-15 15:55:55 +0000 |
commit | acd64e2a77c730df16340e358d455b1df58d9c01 (patch) | |
tree | e37e0f601a72d123cea43d24856ffeafc49ef737 /src/lib/libcrypto/evp/encode.c | |
parent | 9252ec493c5adc16409b512b27a4c3362e3f61ae (diff) | |
download | openbsd-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.c | 4 |
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 | |||
224 | EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl, | 224 | EVP_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: | |||
360 | int | 360 | int |
361 | EVP_DecodeBlock(unsigned char *t, const unsigned char *f, int n) | 361 | EVP_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. */ |