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_fermat.c'

#
#
# patch "bn_mp_prime_fermat.c"
#  from [7a08d1ab74369ae14b39a95258a6b955e0d7be22]
#    to [bed25e3d7aef4e9ce0bd9642626e082b7bc02e73]
#
============================================================
--- bn_mp_prime_fermat.c	7a08d1ab74369ae14b39a95258a6b955e0d7be22
+++ bn_mp_prime_fermat.c	bed25e3d7aef4e9ce0bd9642626e082b7bc02e73
@@ -43,7 +43,7 @@ int mp_prime_fermat (mp_int * a, mp_int

   /* compute t = b**a mod a */
   if ((err = mp_exptmod (b, a, a, &t)) != MP_OKAY) {
-    goto __T;
+    goto LBL_T;
   }

   /* is it equal to b? */
@@ -52,7 +52,7 @@ int mp_prime_fermat (mp_int * a, mp_int
   }

   err = MP_OKAY;
-__T:mp_clear (&t);
+LBL_T:mp_clear (&t);
   return err;
 }
 #endif