summaryrefslogtreecommitdiff
path: root/libre/clementine/clementine-cryptopp6.patch
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2020-04-11 10:45:40 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2020-04-11 10:45:40 -0500
commitb2137d95a95a40f7d578839ca129d0f587e0fb3b (patch)
tree7016dd2574e4f9654e3800dbcb83083c0ed64cbb /libre/clementine/clementine-cryptopp6.patch
parent891c16dc281b1488c9622251df401dc2b038c6a1 (diff)
downloadabslibre-b2137d95a95a40f7d578839ca129d0f587e0fb3b.tar.gz
abslibre-b2137d95a95a40f7d578839ca129d0f587e0fb3b.tar.bz2
abslibre-b2137d95a95a40f7d578839ca129d0f587e0fb3b.zip
clementine-1.4.0rc1-1.parabola1: updating version
Diffstat (limited to 'libre/clementine/clementine-cryptopp6.patch')
-rw-r--r--libre/clementine/clementine-cryptopp6.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/libre/clementine/clementine-cryptopp6.patch b/libre/clementine/clementine-cryptopp6.patch
deleted file mode 100644
index 8197c38fe..000000000
--- a/libre/clementine/clementine-cryptopp6.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-diff --git a/src/internet/spotify/spotifyblobdownloader.cpp b/src/internet/spotify/spotifyblobdownloader.cpp
-index e34577f5d..045aeeb8a 100644
---- a/src/internet/spotify/spotifyblobdownloader.cpp
-+++ b/src/internet/spotify/spotifyblobdownloader.cpp
-@@ -189,7 +189,7 @@ bool SpotifyBlobDownloader::CheckSignature(
-
- try {
- CryptoPP::ByteQueue bytes;
-- bytes.Put(reinterpret_cast<const byte*>(public_key_data.constData()),
-+ bytes.Put(reinterpret_cast<const CryptoPP::byte*>(public_key_data.constData()),
- public_key_data.size());
- bytes.MessageEnd();
-
-@@ -204,9 +204,9 @@ bool SpotifyBlobDownloader::CheckSignature(
- actual_filename.remove(kSignatureSuffix);
-
- const bool result = verifier.VerifyMessage(
-- reinterpret_cast<const byte*>(file_data[actual_filename].constData()),
-+ reinterpret_cast<const CryptoPP::byte*>(file_data[actual_filename].constData()),
- file_data[actual_filename].size(),
-- reinterpret_cast<const byte*>(
-+ reinterpret_cast<const CryptoPP::byte*>(
- file_data[signature_filename].constData()),
- file_data[signature_filename].size());
- qLog(Debug) << "Verifying" << actual_filename << "against"