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

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

#
#
# patch "aes.c"
#  from [34c70069a1c05c3e8d6e42f1ef10495b271f425d]
#    to [220e35e84f3ce17148487e309cf334b4babac3e4]
#
============================================================
--- aes.c	34c70069a1c05c3e8d6e42f1ef10495b271f425d
+++ aes.c	220e35e84f3ce17148487e309cf334b4babac3e4
@@ -89,7 +89,7 @@ static ulong32 setup_mix(ulong32 temp)
 }

 #ifndef ENCRYPT_ONLY
-
+#ifdef SMALL_CODE
 static ulong32 setup_mix2(ulong32 temp)
 {
    return Td0(255 & Te4[byte(temp, 3)]) ^
@@ -97,8 +97,8 @@ static ulong32 setup_mix2(ulong32 temp)
           Td2(255 & Te4[byte(temp, 1)]) ^
           Td3(255 & Te4[byte(temp, 0)]);
 }
-
 #endif
+#endif

 int SETUP(const unsigned char *key, int keylen, int rounds, symmetric_key *skey)
 {