ZVISION: Make ZFS Archive member name indexing case-insensitive

This commit is contained in:
richiesams 2013-08-10 17:07:56 -05:00
parent 9740087441
commit 86b3dfa221

View File

@ -52,7 +52,7 @@ struct ZfsEntryHeader {
uint32 unknown;
};
typedef Common::HashMap<Common::String, ZfsEntryHeader*> ZfsEntryHeaderMap;
typedef Common::HashMap<Common::String, ZfsEntryHeader*, Common::IgnoreCase_Hash, Common::IgnoreCase_EqualTo> ZfsEntryHeaderMap;
class ZfsArchive : public Common::Archive {
public: