From: Bodo Möller Date: Thu, 30 Nov 2000 00:37:49 +0000 (+0000) Subject: Fix bntest.c problem -- one of the primes got lost X-Git-Tag: OpenSSL_0_9_6a-beta1~107^2~103 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=77ac92d00a795ef34ff0a169a87718780250ca54;ds=sidebyside Fix bntest.c problem -- one of the primes got lost --- diff --git a/crypto/bn/bntest.c b/crypto/bn/bntest.c index 8f5b72c7f2..9d1fca7ea0 100644 --- a/crypto/bn/bntest.c +++ b/crypto/bn/bntest.c @@ -1013,7 +1013,7 @@ int test_sqrt(BIO *bp, BN_CTX *ctx) { if (i < 8) { - unsigned primes[8] = { 2, 3, 7, 11, 13, 17, 19 }; + unsigned primes[8] = { 2, 3, 5, 7, 11, 13, 17, 19 }; if (!BN_set_word(p, primes[i])) goto err; }