mark all block comments that need format preserving so that
[openssl.git] / crypto / bn / bn_prime.c
index 2d66b61f0484a25519de73993038c4f1156933ae..9f390054e35aa16f2dd54915fe2be7d77a5877b0 100644 (file)
@@ -524,7 +524,8 @@ loop:
                {
                BN_ULONG rnd_word = BN_get_word(rnd);
 
-               /* In the case that the candidate prime is a single word then
+               /*-
+                * In the case that the candidate prime is a single word then
                 * we check that:
                 *   1) It's greater than primes[i] because we shouldn't reject
                 *      3 as being a prime number because it's a multiple of
@@ -532,7 +533,8 @@ loop:
                 *   2) That it's not a multiple of a known prime. We don't
                 *      check that rnd-1 is also coprime to all the known
                 *      primes because there aren't many small primes where
-                *      that's true. */
+                *      that's true. 
+                */
                for (i=1; i<NUMPRIMES && primes[i]<rnd_word; i++)
                        {
                        if ((mods[i]+delta)%primes[i] == 0)