diff options
author | George Hazan <george.hazan@gmail.com> | 2012-09-27 13:07:30 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-09-27 13:07:30 +0000 |
commit | 6839e6aa877dfd7f86571361b1d85bf7f15fa427 (patch) | |
tree | 76281731ba910423136e73116809362332b1f9e6 /protocols/MRA/MraOfflineMsg.cpp | |
parent | 3ef638023d476a91128f287fe454b547836a4b90 (diff) |
fix for offline messages
git-svn-id: http://svn.miranda-ng.org/main/trunk@1681 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/MRA/MraOfflineMsg.cpp')
-rw-r--r-- | protocols/MRA/MraOfflineMsg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/MRA/MraOfflineMsg.cpp b/protocols/MRA/MraOfflineMsg.cpp index 868b23dcc6..e3e8b76aff 100644 --- a/protocols/MRA/MraOfflineMsg.cpp +++ b/protocols/MRA/MraOfflineMsg.cpp @@ -99,7 +99,7 @@ DWORD MraOfflineMessageGet(MRA_LPS *plpsMsg, DWORD *pdwTime, DWORD *pdwFlags, MR LPSTR lpszBoundary, lpszMIMEPart, lpszCurMIMEPos, lpszMIMEHeader, lpszMIMEHeaderLow, lpszMIMEBody, lpszMIMEContentType;
size_t i, dwBoundarySize, dwMIMEPartSize, dwMIMEHeaderSize, dwMIMEBodySize, dwMIMEContentTypeSize;
- lpszBoundary = (LPSTR)MemoryFind(0, lpszContentTypeLow, dwContentTypeSize, "boundary = ", 9);
+ lpszBoundary = (LPSTR)MemoryFind(0, lpszContentTypeLow, dwContentTypeSize, "boundary=", 9);
if (lpszBoundary)
{
dwBoundarySize = ((dwContentTypeSize-(lpszBoundary-lpszContentTypeLow))-9);
|