diff options
author | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-11-14 16:15:33 +0000 |
---|---|---|
committer | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-11-14 16:15:33 +0000 |
commit | a66836887fc4aa7514fdf1b3b89b81aee94c145b (patch) | |
tree | 24b6b7fc53df30c9996d7d5d5ea4fae3ff6db175 /updater/scan.cpp | |
parent | 77b0ee42f97d9f3f42d09e40ad79ddccac300974 (diff) |
Added hotkeys (patch by FREAK_THEMIGHTY)
Version Update
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@561 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 8b43d8a..d17c338 100644 --- a/updater/scan.cpp +++ b/updater/scan.cpp @@ -98,7 +98,7 @@ void ScanPlugins(FilenameMap *fn_map, UpdateList *update_list) // this setting may not be there for running plugins - and isn't there for new ones. So,
// we'll disable anything new when the setting isn't found anyway - but we write the
// value below for all plugins so that we can expect to find it
- char *lowname = mir_t2a(findData.cFileName); _strlwr(lowname);
+ char *lowname = _strlwr(mir_t2a(findData.cFileName));
if(DBGetContactSettingByte(0, "PluginDisable", lowname, 255) == 255) // setting not present
DBWriteContactSettingByte(0, "PluginDisable", lowname, 0);
mir_free(lowname);
|