The unified diff between revisions [0dc5b2d6..] and [b14c94b9..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'bn_mp_prime_is_divisible.c'

#
#
# patch "bn_mp_prime_is_divisible.c"
#  from [7536731238b627bc2d90c623d38fd2952bf0dba8]
#    to [ac6f9ad19e8ee7c27df8dab72b160090de3f88e5]
#
============================================================
--- bn_mp_prime_is_divisible.c	7536731238b627bc2d90c623d38fd2952bf0dba8
+++ bn_mp_prime_is_divisible.c	ac6f9ad19e8ee7c27df8dab72b160090de3f88e5
@@ -29,8 +29,8 @@ int mp_prime_is_divisible (mp_int * a, i
   *result = MP_NO;

   for (ix = 0; ix < PRIME_SIZE; ix++) {
-    /* what is a mod __prime_tab[ix] */
-    if ((err = mp_mod_d (a, __prime_tab[ix], &res)) != MP_OKAY) {
+    /* what is a mod LBL_prime_tab[ix] */
+    if ((err = mp_mod_d (a, ltm_prime_tab[ix], &res)) != MP_OKAY) {
       return err;
     }