diff options
author | Robert Pösel <robyer@seznam.cz> | 2013-06-15 21:04:25 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2013-06-15 21:04:25 +0000 |
commit | 5c4b80a068ed7b305e68071d39c99a6c98a9ed2f (patch) | |
tree | 44efbccc7d92b64a8f3ee9a3834a9d5d9e558acb /plugins/PluginUpdater/src/unzipfile.cpp | |
parent | b8a364b2a795243043b3f319e6211fcf736f8a77 (diff) |
PluginUpdater: Ignore char case for unchecked items
git-svn-id: http://svn.miranda-ng.org/main/trunk@4965 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/PluginUpdater/src/unzipfile.cpp')
-rw-r--r-- | plugins/PluginUpdater/src/unzipfile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/PluginUpdater/src/unzipfile.cpp b/plugins/PluginUpdater/src/unzipfile.cpp index a20fad318f..ece6a2866d 100644 --- a/plugins/PluginUpdater/src/unzipfile.cpp +++ b/plugins/PluginUpdater/src/unzipfile.cpp @@ -58,7 +58,7 @@ bool extractCurrentFile(unzFile uf, TCHAR *ptszDestPath, TCHAR *ptszBackPath) for (char *p = strchr(filename, '/'); p; p = strchr(p+1, '/'))
*p = '\\';
- if (!db_get_b(NULL, MODNAME "Files", filename, true))
+ if (!db_get_b(NULL, MODNAME "Files", StrToLower(ptrA(filename)), true))
return true;
TCHAR tszDestFile[MAX_PATH], tszBackFile[MAX_PATH];
|