modes/ctr128.c: make it indent-friendly.
authorAndy Polyakov <appro@openssl.org>
Wed, 21 Jan 2015 15:49:27 +0000 (16:49 +0100)
committerMatt Caswell <matt@openssl.org>
Thu, 22 Jan 2015 09:20:09 +0000 (09:20 +0000)
Reviewed-by: Tim Hudson <tjh@openssl.org>
crypto/modes/ctr128.c

index ee642c5863cd38fe21ddef6b4727c2e3047656d3..f90605785c3807962aa61b31ecab25c9d7d5d4b3 100644 (file)
@@ -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<len) {