diff options
author | George Hazan <ghazan@miranda.im> | 2021-08-30 11:01:34 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-08-30 11:01:34 +0300 |
commit | dc4d1cd2f21b537fcc12522be5b93f80bbbf3b60 (patch) | |
tree | 98dafc0a339ded3d22a3a6498929c4c9e880e781 /plugins | |
parent | 33fe69a40aedb1ff4849818a2a7527f10820c791 (diff) |
Plugin Updater adaptation for the comeback of libmdbx
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/PluginUpdater/src/DlgUpdate.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/plugins/PluginUpdater/src/DlgUpdate.cpp b/plugins/PluginUpdater/src/DlgUpdate.cpp index 569757fc63..02c40eaea6 100644 --- a/plugins/PluginUpdater/src/DlgUpdate.cpp +++ b/plugins/PluginUpdater/src/DlgUpdate.cpp @@ -522,7 +522,6 @@ static renameTable[] = { L"dbtool_sa.exe", nullptr },
{ L"dbchecker.bat", nullptr },
{ L"fixme.cmd", nullptr },
- { L"libmdbx.mir", nullptr },
{ L"mdbx_chk.exe", nullptr },
{ L"mdbx_dump.exe", nullptr },
{ L"mdbx_load.exe", nullptr },
@@ -692,9 +691,7 @@ static int ScanFolder(const wchar_t *pwszFolder, size_t cbBaseLen, const wchar_t }
}
else {
- if (level < 2 && !wcsicmp(ffd.cFileName, L"libmdbx.mir")) // move Libs\\libmdbx.mir to the root folder
- wszNewName[0] = 0;
- else if (!wcsicmp(ffd.cFileName, L"libeay32.mir") || !wcsicmp(ffd.cFileName, L"ssleay32.mir")) // remove old OpenSSL modules
+ if (!wcsicmp(ffd.cFileName, L"libeay32.mir") || !wcsicmp(ffd.cFileName, L"ssleay32.mir")) // remove old OpenSSL modules
wszNewName[0] = 0;
else
continue; // skip all another files
|