summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2012-05-12 17:16:03 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2012-05-12 17:16:03 +0000
commit2d5a58abc959c0c5e39251e9bf083d99d8fb82b8 (patch)
tree1fd43edee9d0e150cd4fad8499a4e9b507001a23 /app-arch/unshield/files
parentVersion bump. (diff)
downloadgentoo-2-2d5a58abc959c0c5e39251e9bf083d99d8fb82b8.tar.gz
gentoo-2-2d5a58abc959c0c5e39251e9bf083d99d8fb82b8.tar.bz2
gentoo-2-2d5a58abc959c0c5e39251e9bf083d99d8fb82b8.zip
old
(Portage version: 2.2.0_alpha103/cvs/Linux x86_64)
Diffstat (limited to 'app-arch/unshield/files')
-rw-r--r--app-arch/unshield/files/unshield-0.5-amd64.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/app-arch/unshield/files/unshield-0.5-amd64.patch b/app-arch/unshield/files/unshield-0.5-amd64.patch
deleted file mode 100644
index e9f59e7a0e14..000000000000
--- a/app-arch/unshield/files/unshield-0.5-amd64.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- lib/md5/global.h
-+++ lib/md5/global.h
-@@ -17,7 +17,7 @@
- typedef unsigned short int UINT2;
-
- /* UINT4 defines a four byte word */
--typedef unsigned long int UINT4;
-+typedef unsigned int UINT4;
-
- /* PROTO_LIST is defined depending on how PROTOTYPES is defined above.
- If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it
---- lib/md5/md5c.c
-+++ lib/md5/md5c.c
-@@ -68,7 +68,7 @@
-
- /* ROTATE_LEFT rotates x left n bits.
- */
--#define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n))))
-+#define ROTATE_LEFT(x, n) ((((x) << (n)) & 0xffffffffU) | ((x) >> (32-(n))))
-
- /* FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4.
- Rotation is separate from addition to prevent recomputation.