diff options
author | Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com> | 2016-07-01 21:55:35 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2016-07-03 11:28:37 +0000 |
commit | ac6036efa7017066f002def3205048eec2f8c066 (patch) | |
tree | 855dd8926b903224eccff7b109ec6cda1941ee01 /app-arch/p7zip | |
parent | app-arch/gzip: remove unused patches (diff) | |
download | gentoo-ac6036efa7017066f002def3205048eec2f8c066.tar.gz gentoo-ac6036efa7017066f002def3205048eec2f8c066.tar.bz2 gentoo-ac6036efa7017066f002def3205048eec2f8c066.zip |
app-arch/p7zip: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/1812
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'app-arch/p7zip')
-rw-r--r-- | app-arch/p7zip/files/p7zip-9.20.1-long_rar_pwd.patch | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/app-arch/p7zip/files/p7zip-9.20.1-long_rar_pwd.patch b/app-arch/p7zip/files/p7zip-9.20.1-long_rar_pwd.patch deleted file mode 100644 index ea7a90b71d44..000000000000 --- a/app-arch/p7zip/files/p7zip-9.20.1-long_rar_pwd.patch +++ /dev/null @@ -1,17 +0,0 @@ ---- ./CPP/7zip/Crypto/Sha1.cpp 2010-10-20 06:56:08.000000000 +0200 -+++ CPP/7zip/Crypto/Sha1.cpp.new 2013-09-15 09:19:51.000000000 +0200 -@@ -148,10 +148,10 @@ - for (int i = 0; i < kBlockSizeInWords; i++) - { - UInt32 d = _buffer[i]; -- data[i * 4 + 0 - kBlockSize] = (Byte)(d); -- data[i * 4 + 1 - kBlockSize] = (Byte)(d >> 8); -- data[i * 4 + 2 - kBlockSize] = (Byte)(d >> 16); -- data[i * 4 + 3 - kBlockSize] = (Byte)(d >> 24); -+ data[(int)i * 4 + 0 - (int)kBlockSize] = (Byte)(d); -+ data[(int)i * 4 + 1 - (int)kBlockSize] = (Byte)(d >> 8); -+ data[(int)i * 4 + 2 - (int)kBlockSize] = (Byte)(d >> 16); -+ data[(int)i * 4 + 3 - (int)kBlockSize] = (Byte)(d >> 24); - } - returnRes = rar350Mode; - } |