diff options
author | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-11-13 07:19:40 +0000 |
---|---|---|
committer | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-11-13 07:19:40 +0000 |
commit | 77b0ee42f97d9f3f42d09e40ad79ddccac300974 (patch) | |
tree | cf8024f79d66fc6602cddac5c14a3dea925bfbc3 /updater/scan.cpp | |
parent | 41f8db5f1aa22411abdcd27cf32d12f74b947570 (diff) |
Fixes for update issues
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@560 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'updater/scan.cpp')
-rw-r--r-- | updater/scan.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/scan.cpp b/updater/scan.cpp index 21e9311..8b43d8a 100644 --- a/updater/scan.cpp +++ b/updater/scan.cpp @@ -284,7 +284,7 @@ bool RearrangeDllsWorker(char *shortName, StrList &filenames, TCHAR *basedir) // disable any new plugins (i.e. not installed before) that somehome got into the
// dowloaded archives (e.g. loadavatars comes with loadavatarsw - installing both is not good!)
- char *temp_str = mir_t2a(fileName);
+ char *temp_str = _strlwr(mir_t2a(fileName));
disabled_val = DBGetContactSettingByte(0, "PluginDisable", temp_str, 255);
if (disabled_val == 255) { // assume this means setting not in db (should be 1 or 0)
DBWriteContactSettingByte(0, "PluginDisable", temp_str, 1);
|