diff options
author | George Hazan <ghazan@miranda.im> | 2019-01-30 20:49:03 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-01-30 20:49:03 +0300 |
commit | e08b24a95a58cfeb390aae331b068b956f62722d (patch) | |
tree | e4536b10bdd59393476c7611e71eddee1543a1ac /plugins/New_GPG/src/utilities.cpp | |
parent | 1711817c7eb305f6465f46d0a35acf78ab448357 (diff) |
m_icq.h removed
Diffstat (limited to 'plugins/New_GPG/src/utilities.cpp')
-rwxr-xr-x | plugins/New_GPG/src/utilities.cpp | 45 |
1 files changed, 17 insertions, 28 deletions
diff --git a/plugins/New_GPG/src/utilities.cpp b/plugins/New_GPG/src/utilities.cpp index 5baf42a2e8..1854cb4d4a 100755 --- a/plugins/New_GPG/src/utilities.cpp +++ b/plugins/New_GPG/src/utilities.cpp @@ -453,39 +453,28 @@ INT_PTR onSendFile(WPARAM w, LPARAM l) if (isContactSecured(ccs->hContact)) { char *proto = GetContactProto(ccs->hContact); - DWORD uin = db_get_dw(ccs->hContact, proto, "UIN", 0); bool cap_found = false, supported_proto = false; - if (uin) { - if (ProtoServiceExists(proto, PS_ICQ_CHECKCAPABILITY)) { - supported_proto = true; - ICQ_CUSTOMCAP cap = { 0 }; - strncpy(cap.caps, "GPGFileTransfer", sizeof(cap.caps)); - if (CallProtoService(proto, PS_ICQ_CHECKCAPABILITY, (WPARAM)ccs->hContact, (LPARAM)&cap)) - cap_found = true; - } - } - else { - wchar_t *jid = db_get_wsa(ccs->hContact, proto, "jid", L""); - if (jid[0]) { - for (auto p : globals.Accounts) { - wchar_t *caps = p->getJabberInterface()->GetResourceFeatures(jid); - if (caps) { - supported_proto = true; - wstring str; - for (int i = 0;; i++) { - str.push_back(caps[i]); - if (caps[i] == '\0') - if (caps[i + 1] == '\0') - break; - } - mir_free(caps); - if (str.find(L"GPG_Encrypted_FileTransfers:0") != string::npos) - cap_found = true; + wchar_t *jid = db_get_wsa(ccs->hContact, proto, "jid", L""); + if (jid[0]) { + for (auto p : globals.Accounts) { + wchar_t *caps = p->getJabberInterface()->GetResourceFeatures(jid); + if (caps) { + supported_proto = true; + wstring str; + for (int i = 0;; i++) { + str.push_back(caps[i]); + if (caps[i] == '\0') + if (caps[i + 1] == '\0') + break; } + mir_free(caps); + if (str.find(L"GPG_Encrypted_FileTransfers:0") != string::npos) + cap_found = true; } } - mir_free(jid); } + mir_free(jid); + if (supported_proto && !cap_found) { if (MessageBox(nullptr, TranslateT("Capability to decrypt file not found on other side.\nRecipient may be unable to decrypt file(s).\nDo you want to encrypt file(s) anyway?"), TranslateT("File transfer warning"), MB_YESNO) == IDNO) return Proto_ChainSend(w, ccs); |