From 77ac92d00a795ef34ff0a169a87718780250ca54 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bodo=20M=C3=B6ller?= Date: Thu, 30 Nov 2000 00:37:49 +0000 Subject: [PATCH] Fix bntest.c problem -- one of the primes got lost --- crypto/bn/bntest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.34.1