aboutsummaryrefslogtreecommitdiffstats
path: root/testing/par2cmdline/par2cmdline-0.4-cosmetic.patch
diff options
context:
space:
mode:
authorEivind Uggedal <eivind@uggedal.com>2014-05-31 12:03:05 +0000
committerEivind Uggedal <eivind@uggedal.com>2014-05-31 12:03:05 +0000
commit9976fd36fd4a3b407d201512624d694f0efe43f3 (patch)
tree11f1dbaf91180ccab7d170de4e7c12864538bb03 /testing/par2cmdline/par2cmdline-0.4-cosmetic.patch
parent9eeba80d60902a340383bc1cfe909d5449e50e72 (diff)
downloadaports-9976fd36fd4a3b407d201512624d694f0efe43f3.tar.bz2
aports-9976fd36fd4a3b407d201512624d694f0efe43f3.tar.xz
testing/par2cmdline: move to unmaintained
Diffstat (limited to 'testing/par2cmdline/par2cmdline-0.4-cosmetic.patch')
-rw-r--r--testing/par2cmdline/par2cmdline-0.4-cosmetic.patch106
1 files changed, 0 insertions, 106 deletions
diff --git a/testing/par2cmdline/par2cmdline-0.4-cosmetic.patch b/testing/par2cmdline/par2cmdline-0.4-cosmetic.patch
deleted file mode 100644
index 0d5df21610..0000000000
--- a/testing/par2cmdline/par2cmdline-0.4-cosmetic.patch
+++ /dev/null
@@ -1,106 +0,0 @@
---- verificationhashtable.h 2003-06-03 13:48:52.000000000 +0200
-+++ verificationhashtable.h.new 2010-02-10 20:48:50.425580166 +0100
-@@ -66,11 +66,11 @@ public:
- // Comparison operators for searching
- bool operator <(const VerificationHashEntry &r) const
- {
-- return crc < r.crc || crc == r.crc && hash < r.hash;
-+ return crc < r.crc || ( crc == r.crc && hash < r.hash );
- }
- bool operator >(const VerificationHashEntry &r) const
- {
-- return crc > r.crc || crc == r.crc && hash > r.hash;
-+ return crc > r.crc || ( crc == r.crc && hash > r.hash );
- }
- bool operator ==(const VerificationHashEntry &r) const
- {
-@@ -183,11 +183,11 @@ inline const VerificationHashEntry* Veri
-
- while (entry)
- {
-- if (entry->crc < crc || entry->crc == crc && entry->hash < hash)
-+ if (entry->crc < crc || ( entry->crc == crc && entry->hash < hash ) )
- {
- entry = entry->right;
- }
-- else if (entry->crc > crc || entry->crc == crc && entry->hash > hash)
-+ else if (entry->crc > crc || ( entry->crc == crc && entry->hash > hash ) )
- {
- entry = entry->left;
- }
-@@ -402,14 +402,14 @@ inline const VerificationHashEntry* Veri
- // have already been matched, or ones that are the wrong length
- while (currententry && (currententry->SourceFile() != sourcefile ||
- currententry->IsSet() ||
-- checksummer.ShortBlock() && checksummer.BlockLength() != currententry->GetDataBlock()->GetLength()
-+ ( checksummer.ShortBlock() && checksummer.BlockLength() != currententry->GetDataBlock()->GetLength() )
- )
- )
- {
- // If we found an unused entry (which was presumably for the wrong
- // source file) remember it (providing it is the correct length).
-- if (0 == nextentry && !(currententry->IsSet() ||
-- checksummer.ShortBlock() && checksummer.BlockLength() != currententry->GetDataBlock()->GetLength()
-+ if ( ( ( 0 == nextentry && !(currententry->IsSet() ) ) ||
-+ ( checksummer.ShortBlock() && checksummer.BlockLength() != currententry->GetDataBlock()->GetLength() )
- )
- )
- {
-@@ -425,8 +425,8 @@ inline const VerificationHashEntry* Veri
- }
-
- // Check for an unused entry which is the correct length
-- while (nextentry && (nextentry->IsSet() ||
-- checksummer.ShortBlock() && checksummer.BlockLength() != nextentry->GetDataBlock()->GetLength()
-+ while ( ( ( nextentry && (nextentry->IsSet() ) ) ||
-+ ( checksummer.ShortBlock() && checksummer.BlockLength() != nextentry->GetDataBlock()->GetLength() )
- )
- )
- {
---- par1repairer.cpp 2004-04-15 15:40:48.000000000 +0200
-+++ par1repairer.cpp.new 2010-02-10 21:04:43.288702325 +0100
-@@ -324,7 +324,7 @@ bool Par1Repairer::LoadRecoveryFile(stri
- ||
- (fileheader.datasize && (fileheader.dataoffset < sizeof(fileheader) || fileheader.dataoffset + fileheader.datasize > filesize))
- ||
-- (fileheader.datasize && (fileheader.filelistoffset <= fileheader.dataoffset && fileheader.dataoffset < fileheader.filelistoffset+fileheader.filelistsize || fileheader.dataoffset <= fileheader.filelistoffset && fileheader.filelistoffset < fileheader.dataoffset + fileheader.datasize)))
-+ (fileheader.datasize && ( ( fileheader.filelistoffset <= fileheader.dataoffset && fileheader.dataoffset < fileheader.filelistoffset+fileheader.filelistsize ) || ( fileheader.dataoffset <= fileheader.filelistoffset && fileheader.filelistoffset < fileheader.dataoffset + fileheader.datasize ) )))
- break;
-
- // Check the size of the file list
-@@ -518,9 +518,9 @@ bool Par1Repairer::LoadOtherRecoveryFile
- // Check the the file extension is the correct form
- if ((tail[0] == 'P' || tail[0] == 'p') &&
- (
-- (tail[1] == 'A' || tail[1] == 'a') && (tail[2] == 'R' || tail[2] == 'r')
-+ ( (tail[1] == 'A' || tail[1] == 'a') && (tail[2] == 'R' || tail[2] == 'r') )
- ||
-- isdigit(tail[1]) && isdigit(tail[2])
-+ ( isdigit(tail[1]) && isdigit(tail[2]) )
- ))
- {
- LoadRecoveryFile(filename);
-@@ -549,9 +549,9 @@ bool Par1Repairer::LoadExtraRecoveryFile
- // Check the the file extension is the correct form
- if ((tail[0] == 'P' || tail[0] == 'p') &&
- (
-- (tail[1] == 'A' || tail[1] == 'a') && (tail[2] == 'R' || tail[2] == 'r')
-+ ( (tail[1] == 'A' || tail[1] == 'a') && (tail[2] == 'R' || tail[2] == 'r') )
- ||
-- isdigit(tail[1]) && isdigit(tail[2])
-+ ( isdigit(tail[1]) && isdigit(tail[2]) )
- ))
- {
- LoadRecoveryFile(filename);
-@@ -652,9 +652,9 @@ bool Par1Repairer::VerifyExtraFiles(cons
- // Check the the file extension is the correct form
- if ((tail[0] == 'P' || tail[0] == 'p') &&
- (
-- (tail[1] == 'A' || tail[1] == 'a') && (tail[2] == 'R' || tail[2] == 'r')
-+ ( (tail[1] == 'A' || tail[1] == 'a') && (tail[2] == 'R' || tail[2] == 'r') )
- ||
-- isdigit(tail[1]) && isdigit(tail[2])
-+ ( isdigit(tail[1]) && isdigit(tail[2]) )
- ))
- {
- skip = true;