diff options
Diffstat (limited to 'plugins/New_GPG')
-rwxr-xr-x | plugins/New_GPG/src/messages.cpp | 2 | ||||
-rwxr-xr-x | plugins/New_GPG/src/utilities.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/New_GPG/src/messages.cpp b/plugins/New_GPG/src/messages.cpp index bb42e46d35..4bd3f03698 100755 --- a/plugins/New_GPG/src/messages.cpp +++ b/plugins/New_GPG/src/messages.cpp @@ -136,7 +136,7 @@ static void RecvMsgSvc_func(RecvParams *param) params.addParam(globals.wszPassword.c_str()); } else if (globals.bDebugLog) - globals.debuglog << "info: passwords not found in database or memory, trying to decrypt message from " + toUTF8(Clist_GetContactDisplayName(hContact)) + " with out password"; + globals.debuglog << "info: passwords not found in database or memory, trying to decrypt message from " + toUTF8(Clist_GetContactDisplayName(hContact)) + " without password"; } if (!globals.bDebugLog) { diff --git a/plugins/New_GPG/src/utilities.cpp b/plugins/New_GPG/src/utilities.cpp index f8147f5894..fc4f39df5c 100755 --- a/plugins/New_GPG/src/utilities.cpp +++ b/plugins/New_GPG/src/utilities.cpp @@ -283,7 +283,7 @@ int onProtoAck(WPARAM, LPARAM l) params.addParam(globals.wszPassword.c_str()); } else if (globals.bDebugLog) - globals.debuglog << "info: passwords not found in database or memory, trying to decrypt message from " + toUTF8(Clist_GetContactDisplayName(ack->hContact)) + " with out password"; + globals.debuglog << "info: passwords not found in database or memory, trying to decrypt message from " + toUTF8(Clist_GetContactDisplayName(ack->hContact)) + " without password"; } params.addParam(L"-d"); params.addParam(filename); @@ -606,7 +606,7 @@ static JABBER_HANDLER_FUNC SendHandler(IJabberInterface *ji, TiXmlElement *node, params.addParam(globals.wszPassword.c_str()); } else if (globals.bDebugLog) - globals.debuglog << "info: passwords not found in database or memory, trying to encrypt message from self with out password"; + globals.debuglog << "info: passwords not found in database or memory, trying to encrypt message from self without password"; } params.addParam(L"--local-user"); |