summaryrefslogtreecommitdiff
path: root/plugins/Db3x_mmap
diff options
context:
space:
mode:
authorDart Raiden <wowemuh@gmail.com>2015-11-22 23:27:21 +0000
committerDart Raiden <wowemuh@gmail.com>2015-11-22 23:27:21 +0000
commitd5af64fc1ed1bd2f5ccc2a03ec03c19803c00555 (patch)
tree074405f1a3b61543efca0d10ad6e6c867377a3b2 /plugins/Db3x_mmap
parentb394b5a6cb85b29651fec8a16097af88c13e3e09 (diff)
revert commit 15756
git-svn-id: http://svn.miranda-ng.org/main/trunk@15759 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Db3x_mmap')
-rw-r--r--plugins/Db3x_mmap/src/dbtool/eventchain.cpp2
-rw-r--r--plugins/Db3x_mmap/src/dbtool/settingschain.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Db3x_mmap/src/dbtool/eventchain.cpp b/plugins/Db3x_mmap/src/dbtool/eventchain.cpp
index 3240b512a4..f92f30519f 100644
--- a/plugins/Db3x_mmap/src/dbtool/eventchain.cpp
+++ b/plugins/Db3x_mmap/src/dbtool/eventchain.cpp
@@ -214,7 +214,7 @@ int CDb3Mmap::WorkEventChain(DWORD ofsContact, DBContact *dbc, int firstTime)
}
if (dbeOld.cbBlob > 1024 * 1024 || dbeOld.cbBlob == 0) {
- cb->pfnAddLogMessage(STATUS_ERROR, TranslateT("Unfeasibly large event blob: skipping"));
+ cb->pfnAddLogMessage(STATUS_ERROR, TranslateT("Infeasibly large event blob: skipping"));
ofsThisEvent = dbeOld.ofsNext;
return ERROR_SUCCESS;
}
diff --git a/plugins/Db3x_mmap/src/dbtool/settingschain.cpp b/plugins/Db3x_mmap/src/dbtool/settingschain.cpp
index c706674ca0..92c63c0b32 100644
--- a/plugins/Db3x_mmap/src/dbtool/settingschain.cpp
+++ b/plugins/Db3x_mmap/src/dbtool/settingschain.cpp
@@ -43,7 +43,7 @@ int CDb3Mmap::WorkSettingsChain(DBContact *dbc, int firstTime)
return ERROR_NO_MORE_ITEMS;
if (dbcsOld.cbBlob > 256 * 1024 || dbcsOld.cbBlob == 0) {
- cb->pfnAddLogMessage(STATUS_ERROR, TranslateT("Unfeasibly large settings blob: skipping"));
+ cb->pfnAddLogMessage(STATUS_ERROR, TranslateT("Infeasibly large settings blob: skipping"));
ofsThisSettings = dbcsOld.ofsNext;
return ERROR_SUCCESS;
}