summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2004-11-24 17:30:09 +0000
committerMarc Laukien <marc@zeroc.com>2004-11-24 17:30:09 +0000
commit7df9850dcd9215a41df1e0855572258c5ed9ab6b (patch)
treecf4152a04cb3dcdd233e32be55a177cfe337912a /cpp/src
parentmore IcePatch2 (diff)
downloadice-7df9850dcd9215a41df1e0855572258c5ed9ab6b.tar.bz2
ice-7df9850dcd9215a41df1e0855572258c5ed9ab6b.tar.xz
ice-7df9850dcd9215a41df1e0855572258c5ed9ab6b.zip
fix
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/IcePatch2/Util.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/IcePatch2/Util.cpp b/cpp/src/IcePatch2/Util.cpp
index a72bdb2b847..80544f472b4 100644
--- a/cpp/src/IcePatch2/Util.cpp
+++ b/cpp/src/IcePatch2/Util.cpp
@@ -213,7 +213,9 @@ bool
IcePatch2::ignoreSuffix(const string& path)
{
string suffix = getSuffix(path);
- return suffix == "bz2" || suffix == "md5"; // "md5" is for legacy IcePatch
+ return suffix == "md5" // For legacy IcePatch
+ || suffix == "tot" // For legacy IcePatch
+ || suffix == "bz2";
}
string