diff options
author | George Hazan <george.hazan@gmail.com> | 2013-04-20 10:41:27 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-04-20 10:41:27 +0000 |
commit | 2ffa7047ec0475856481b9e813eecb99b268d2d0 (patch) | |
tree | 0fda1b8c11a018c049b07e20059e38e1c693e266 /protocols/MSN | |
parent | 5560fccb85a89bb668a79eed3d4cd0e668278331 (diff) |
protocols must return unique ids on SendMsg
git-svn-id: http://svn.miranda-ng.org/main/trunk@4481 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/MSN')
-rw-r--r-- | protocols/MSN/src/msn_proto.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/protocols/MSN/src/msn_proto.cpp b/protocols/MSN/src/msn_proto.cpp index e2b1cf2763..509084481d 100644 --- a/protocols/MSN/src/msn_proto.cpp +++ b/protocols/MSN/src/msn_proto.cpp @@ -907,8 +907,7 @@ int __cdecl CMsnProto::SendMsg(HANDLE hContact, int flags, const char* pszSrc) int seq = 0;
int netId = Lists_GetNetId(tEmail);
- switch (netId)
- {
+ switch (netId) {
case NETID_MOB:
if (strlen(msg) > 133)
{
|