From: Matt Caswell <matt@openssl.org>
Date: Wed, 21 Jan 2015 16:12:59 +0000 (+0000)
Subject: Fix indent comment corruption issue
X-Git-Tag: OpenSSL_0_9_8-post-reformat~14
X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=175af9de8995d2128b2820fd1faff8515634ae10;p=oweals%2Fopenssl.git

Fix indent comment corruption issue

Reviewed-by: Tim Hudson <tjh@openssl.org>
---

diff --git a/crypto/bn/bn_lib.c b/crypto/bn/bn_lib.c
index fedf864988..4627153e3d 100644
--- a/crypto/bn/bn_lib.c
+++ b/crypto/bn/bn_lib.c
@@ -356,12 +356,12 @@ static BN_ULONG *bn_expand_internal(const BIGNUM *b, int words)
 		case 2:	A[1]=B[1];
 		case 1:	A[0]=B[0];
 		case 0:
+			;
 			/*
 			 * workaround for ultrix cc: without 'case 0', the optimizer does
 			 * the switch table by doing a=top&3; a--; goto jump_table[a];
 			 * which fails for top== 0
 			 */
-			;
 			}
 		}
 
diff --git a/ssl/ssl.h b/ssl/ssl.h
index 0b3829929a..879b44943a 100644
--- a/ssl/ssl.h
+++ b/ssl/ssl.h
@@ -751,7 +751,8 @@ struct ssl_ctx_st
 
 	/* Default values used when no per-SSL value is defined follow */
 
-	void (*info_callback)(const SSL *ssl,int type,int val); /* used if SSL's info_callback is NULL */
+	/* used if SSL's info_callback is NULL */
+	void (*info_callback)(const SSL *ssl,int type,int val);
 
 	/* what we put in client cert requests */
 	STACK_OF(X509_NAME) *client_CA;