diff options
author | George Hazan <george.hazan@gmail.com> | 2012-09-12 13:49:51 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-09-12 13:49:51 +0000 |
commit | 4975351ff463262e6687070873ed1c5880a0f92b (patch) | |
tree | 5ae34f72e5cc7268d062f67f72071281656e4552 | |
parent | c38384af887b82acdf2f8e46975cf61bf7c95cea (diff) |
fix for message receiving
git-svn-id: http://svn.miranda-ng.org/main/trunk@1566 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | protocols/MRA/MraProto.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/protocols/MRA/MraProto.cpp b/protocols/MRA/MraProto.cpp index 3e36de7fd3..89be68ff44 100644 --- a/protocols/MRA/MraProto.cpp +++ b/protocols/MRA/MraProto.cpp @@ -513,7 +513,8 @@ int CMraProto::RecvFile(HANDLE hContact, PROTORECVFILET *pre) int CMraProto::RecvMsg(HANDLE hContact, PROTORECVEVENT *pre)
{
- CallService(MS_PROTO_RECVMSG, 0, (LPARAM)pre);
+ CCSDATA ccs = { hContact, PSR_MESSAGE, 0, (LPARAM)pre };
+ CallService(MS_PROTO_RECVMSG, 0, (LPARAM)&ccs);
return 0;
}
|