diff options
author | Marc Laukien <marc@zeroc.com> | 2004-11-23 22:12:43 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2004-11-23 22:12:43 +0000 |
commit | 04b2cf7e7d3501f891e192211f508348e1064bf4 (patch) | |
tree | a16f769ed9572f704489317df863eddcb048664d /cpp/src/IcePatch2/Util.cpp | |
parent | more IcePatch2 (diff) | |
download | ice-04b2cf7e7d3501f891e192211f508348e1064bf4.tar.bz2 ice-04b2cf7e7d3501f891e192211f508348e1064bf4.tar.xz ice-04b2cf7e7d3501f891e192211f508348e1064bf4.zip |
fix
Diffstat (limited to 'cpp/src/IcePatch2/Util.cpp')
-rw-r--r-- | cpp/src/IcePatch2/Util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IcePatch2/Util.cpp b/cpp/src/IcePatch2/Util.cpp index 027ded3b540..b1c1adf8439 100644 --- a/cpp/src/IcePatch2/Util.cpp +++ b/cpp/src/IcePatch2/Util.cpp @@ -211,7 +211,7 @@ bool IcePatch2::ignoreSuffix(const string& path) { string suffix = getSuffix(path); - return suffix == "bz2"; + return suffix == "bz2" || suffix == "md5"; // "md5" is for legacy IcePatch } string |