From: Andy Polyakov Date: Wed, 21 Jan 2015 15:47:51 +0000 (+0100) Subject: modes/cfb128.c: make it indent-friendly. X-Git-Tag: OpenSSL_1_0_0-post-reformat~16 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=638f75b686dd1dafca569945039419a0c1e0ad25;p=oweals%2Fopenssl.git modes/cfb128.c: make it indent-friendly. Reviewed-by: Tim Hudson --- diff --git a/crypto/modes/cfb128.c b/crypto/modes/cfb128.c index e5938c6137..a64898e777 100644 --- a/crypto/modes/cfb128.c +++ b/crypto/modes/cfb128.c @@ -84,7 +84,8 @@ void CRYPTO_cfb128_encrypt(const unsigned char *in, unsigned char *out, if (enc) { #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++) = ivec[n] ^= *(in++); --len; @@ -114,7 +115,8 @@ void CRYPTO_cfb128_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