summaryrefslogtreecommitdiff
path: root/plugins/New_GPG/src/utilities.cpp
diff options
context:
space:
mode:
authorAlexander Gluzsky <sss123next@list.ru>2016-04-23 09:53:38 +0000
committerAlexander Gluzsky <sss123next@list.ru>2016-04-23 09:53:38 +0000
commit5eb48fbccc83c4c8c0868110a9d1ae0e885b928c (patch)
tree63bd352691c111a6ddd5bd7879797c9be815bc9f /plugins/New_GPG/src/utilities.cpp
parent5d3e831e9c8141b8720c7b21231bf5ce0a1d975f (diff)
plugins:
new_gpg: version bump git-svn-id: http://svn.miranda-ng.org/main/trunk@16754 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/New_GPG/src/utilities.cpp')
-rwxr-xr-xplugins/New_GPG/src/utilities.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/New_GPG/src/utilities.cpp b/plugins/New_GPG/src/utilities.cpp
index e066c585dc..f45c994602 100755
--- a/plugins/New_GPG/src/utilities.cpp
+++ b/plugins/New_GPG/src/utilities.cpp
@@ -650,6 +650,8 @@ static JABBER_HANDLER_FUNC SendHandler(IJabberInterface *ji, HXML node, void*)
return FALSE;
}
if (str) {
+
+ //TODO: make following block more readable
if (_tcsstr(str, _T("-----BEGIN PGP MESSAGE-----")) && _tcsstr(str, _T("-----END PGP MESSAGE-----"))) {
wstring data = str;
xmlSetText(local_node, _T("This message is encrypted."));
@@ -670,6 +672,8 @@ static JABBER_HANDLER_FUNC SendHandler(IJabberInterface *ji, HXML node, void*)
wstring::size_type p2 = data.find(_T("-----END PGP MESSAGE-----"));
wstring data2 = data.substr(p1, p2 - p1 - 2);
strip_line_term(data2);
+ if(bDebugLog)
+ debuglog<<std::string(time_str() + ": jabber_api: attaching:\r\n\r\n" + toUTF8(data2) + "\n\n\t to outgoing xml");
HXML encrypted_data = xmlAddChild(node, _T("x"), data2.c_str());
xmlAddAttr(encrypted_data, _T("xmlns"), _T("jabber:x:encrypted"));
return FALSE;