summaryrefslogtreecommitdiffstats
path: root/fips/rsa/fips_rsa_eay.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-01-22 02:41:39 +0000
committerMatt Caswell <matt@openssl.org>2015-01-22 09:52:49 +0000
commit9d03aabea3ead1fe6a194297ddffd4a87f89b93c (patch)
tree56b02cbcb14aa69c55fad2d379e3577749743338 /fips/rsa/fips_rsa_eay.c
parent117e79dd88d1e208eb0d658d53e395471e7b537e (diff)
More comment changes required for indentOpenSSL_0_9_8-pre-auto-reformat
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'fips/rsa/fips_rsa_eay.c')
-rw-r--r--fips/rsa/fips_rsa_eay.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/fips/rsa/fips_rsa_eay.c b/fips/rsa/fips_rsa_eay.c
index 937a14e684..3d4c620845 100644
--- a/fips/rsa/fips_rsa_eay.c
+++ b/fips/rsa/fips_rsa_eay.c
@@ -304,11 +304,12 @@ static BN_BLINDING *rsa_get_blinding(RSA *rsa, int *local, BN_CTX *ctx)
{
/* resort to rsa->mt_blinding instead */
- *local = 0; /* instructs rsa_blinding_convert(), rsa_blinding_invert()
- * that the BN_BLINDING is shared, meaning that accesses
- * require locks, and that the blinding factor must be
- * stored outside the BN_BLINDING
- */
+ /* instructs rsa_blinding_convert(), rsa_blinding_invert()
+ * that the BN_BLINDING is shared, meaning that accesses
+ * require locks, and that the blinding factor must be
+ * stored outside the BN_BLINDING
+ */
+ *local = 0;
if (rsa->mt_blinding == NULL)
{