summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-01-21 16:12:59 +0000
committerMatt Caswell <matt@openssl.org>2015-01-22 09:45:01 +0000
commit510edea8db5e983fc53a2d9e61b2acf25e5f0508 (patch)
tree6674df30822d89c3163ae4e50edb90b809efba4b
parent3bc28b8022bc209e7fc0c4d9decb444c35c22ad4 (diff)
Fix indent comment corruption issue
Reviewed-by: Tim Hudson <tjh@openssl.org>
-rw-r--r--crypto/bn/bn_lib.c2
-rw-r--r--ssl/ssl.h3
2 files changed, 3 insertions, 2 deletions
diff --git a/crypto/bn/bn_lib.c b/crypto/bn/bn_lib.c
index 6b7f57d8e5..5be55b996b 100644
--- a/crypto/bn/bn_lib.c
+++ b/crypto/bn/bn_lib.c
@@ -375,12 +375,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 74cd85c3a9..48f4a33d57 100644
--- a/ssl/ssl.h
+++ b/ssl/ssl.h
@@ -797,7 +797,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;