Index: patches/nss-chacha20-poly1305.patch |
=================================================================== |
--- patches/nss-chacha20-poly1305.patch (revision 231930) |
+++ patches/nss-chacha20-poly1305.patch (working copy) |
@@ -976,7 +976,7 @@ |
+ memcpy(m, &v, sizeof(v)); |
+} |
+#else |
-+static void U8TO32_LE(const unsigned char *m) { |
++static uint32_t U8TO32_LE(const unsigned char *m) { |
+ return (uint32_t)m[0] | |
+ (uint32_t)m[1] << 8 | |
+ (uint32_t)m[2] << 16 | |