From: Andy Polyakov Date: Wed, 21 Jan 2015 15:49:27 +0000 (+0100) Subject: modes/ctr128.c: make it indent-friendly. X-Git-Tag: OpenSSL_1_0_1-post-reformat~14 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3af30a7b8b69adec54a3b899df8b5341afd15a66;p=oweals%2Fopenssl.git modes/ctr128.c: make it indent-friendly. Reviewed-by: Tim Hudson --- diff --git a/crypto/modes/ctr128.c b/crypto/modes/ctr128.c index ee642c5863..f90605785c 100644 --- a/crypto/modes/ctr128.c +++ b/crypto/modes/ctr128.c @@ -125,7 +125,8 @@ void CRYPTO_ctr128_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++) ^ ecount_buf[n]; --len; @@ -157,7 +158,8 @@ void CRYPTO_ctr128_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