diff options
author | watcher <watcherhd@gmail.com> | 2017-04-25 21:42:45 +0000 |
---|---|---|
committer | watcher <watcherhd@gmail.com> | 2017-04-25 21:42:45 +0000 |
commit | 3919b8b2d5270a41cbad66158165a4101b230e95 (patch) | |
tree | 0c6d68ead18e209db593a4c453c05fa1d013efd0 /protocols/JabberG/src/jabber_proto.cpp | |
parent | 7ba4ca70542a5dad951f030898f6398871e6b993 (diff) |
Revert "jabber: omemo: improoved 4.4, working on 4.5"
This reverts commit 26092086b62afd9bdef93f4756ae7558ec681e9a.
breaks compilation in MSVS 2010:
>src\jabber_omemo.cpp(1253): error C2059: syntax error : '{'
3>src\jabber_omemo.cpp(1253): error C2143: syntax error : missing ';' before '{'
3>src\jabber_omemo.cpp(1257): error C2143: syntax error : missing ';' before '}'
Diffstat (limited to 'protocols/JabberG/src/jabber_proto.cpp')
-rwxr-xr-x | protocols/JabberG/src/jabber_proto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_proto.cpp b/protocols/JabberG/src/jabber_proto.cpp index 71e630bd4a..d2ce816639 100755 --- a/protocols/JabberG/src/jabber_proto.cpp +++ b/protocols/JabberG/src/jabber_proto.cpp @@ -964,7 +964,7 @@ int __cdecl CJabberProto::SendMsg(MCONTACT hContact, int, const char* pszSrc) if(m_options.UseOMEMO && OmemoIsEnabled(hContact) && !mir_wstrcmp(msgType, L"chat")) //omemo enabled in options, omemo enabled for contact
{
- OmemoEncryptMessage(m, msg, hContact);
+ OmemoEncryptMessage(m, msg);
}
else
{
|