summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2015-01-21 16:51:06 +0100
committerMatt Caswell <matt@openssl.org>2015-01-22 09:37:31 +0000
commit2655f5644d4984a03c8ac7162d6c96f58d6a7012 (patch)
tree71970ce09e9ed39dcad8c6262ed5d4f7b0b9b166
parent3af30a7b8b69adec54a3b899df8b5341afd15a66 (diff)
downloadopenssl-new-2655f5644d4984a03c8ac7162d6c96f58d6a7012.tar.gz
crypto/ofb128.c: make it indent-friendly.
Reviewed-by: Tim Hudson <tjh@openssl.org>
-rw-r--r--crypto/modes/ofb128.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/crypto/modes/ofb128.c b/crypto/modes/ofb128.c
index 01c01702c4..2b06117649 100644
--- a/crypto/modes/ofb128.c
+++ b/crypto/modes/ofb128.c
@@ -76,7 +76,8 @@ void CRYPTO_ofb128_encrypt(const unsigned char *in, unsigned char *out,
n = *num;
#if !defined(OPENSSL_SMALL_FOOTPRINT)
- if (16%sizeof(size_t) == 0) do { /* always true actually */
+ if (16%sizeof(size_t) == 0) { /* always true actually */
+ do {
while (n && len) {
*(out++) = *(in++) ^ ivec[n];
--len;
@@ -105,7 +106,8 @@ void CRYPTO_ofb128_encrypt(const unsigned char *in, unsigned char *out,
}
*num = n;
return;
- } while(0);
+ } while(0);
+ }
/* the rest would be commonly eliminated by x86* compiler */
#endif
while (l<len) {