From: Niels Möller Date: Fri, 4 Jul 2014 20:21:11 +0000 (+0200) Subject: Fix typo in test for ecc_generic_modq. X-Git-Tag: nettle_3.1rc1~160 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=17352ba719b8c887c2556c1f7f5afde47b09a04c;p=thirdparty%2Fnettle.git Fix typo in test for ecc_generic_modq. --- diff --git a/testsuite/ecc-mod-test.c b/testsuite/ecc-mod-test.c index c88ed92d..c6330cbe 100644 --- a/testsuite/ecc-mod-test.c +++ b/testsuite/ecc-mod-test.c @@ -98,7 +98,7 @@ test_main (void) abort (); } - if (ecc->Bmodp_size < ecc->size) + if (ecc->Bmodq_size < ecc->size) { mpn_copyi (m, a, 2*ecc->size); ecc_generic_modq (ecc, m);