Commit 1ab6c607 authored by Andy Polyakov's avatar Andy Polyakov Committed by Matt Caswell
Browse files

crypto/ofb128.c: make it indent-friendly.



Reviewed-by: default avatarTim Hudson <tjh@openssl.org>
parent a4ad939f
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -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;
@@ -106,6 +107,7 @@ void CRYPTO_ofb128_encrypt(const unsigned char *in, unsigned char *out,
		*num = n;
		return;
	    } while(0);
	}
	/* the rest would be commonly eliminated by x86* compiler */
#endif
	while (l<len) {