diff options
author | George Hazan <ghazan@miranda.im> | 2018-01-31 17:51:08 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-01-31 17:51:08 +0300 |
commit | bdd6a8a6b981a019e6818230077567b4fb51604c (patch) | |
tree | f7d0160b8014b9ab939c280a955840323db6265f /src/core | |
parent | 1124c2c24cde3fffa979b5d6e483a70d3cb75063 (diff) |
mir_app:
- structure renamed: PROTORECVFILET -> PROTORECVFILE;
- useless service MS_PROTO_AUTHRECV removed;
- Proto_AuthRecv() helper converted into a function.
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/stdfile/src/file.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/stdfile/src/file.cpp b/src/core/stdfile/src/file.cpp index 42db8f5f35..ab5b5fa68f 100644 --- a/src/core/stdfile/src/file.cpp +++ b/src/core/stdfile/src/file.cpp @@ -355,7 +355,7 @@ INT_PTR openRecDir(WPARAM, LPARAM) static INT_PTR Proto_RecvFileT(WPARAM, LPARAM lParam)
{
CCSDATA *ccs = (CCSDATA*)lParam;
- PROTORECVFILET* pre = (PROTORECVFILET*)ccs->lParam;
+ PROTORECVFILE* pre = (PROTORECVFILE*)ccs->lParam;
if (pre->fileCount == 0)
return 0;
|