diff options
Diffstat (limited to 'cpp/src/IcePatch2/Util.cpp')
-rw-r--r-- | cpp/src/IcePatch2/Util.cpp | 4 |
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 |