diff options
author | George Hazan <george.hazan@gmail.com> | 2012-09-16 13:04:27 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-09-16 13:04:27 +0000 |
commit | 39c4a49dbfa7fd2e7bce9b7c56c91dceae726542 (patch) | |
tree | 5e67ce292d753da15afaef26ad9e929f455c58f1 /protocols/MRA | |
parent | c56ccb6226b01eafec0c6370feda1415cc46f009 (diff) |
n-nope, we shall return 0
git-svn-id: http://svn.miranda-ng.org/main/trunk@1580 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/MRA')
-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 7be880f92f..8f758e9b6b 100644 --- a/protocols/MRA/MraProto.cpp +++ b/protocols/MRA/MraProto.cpp @@ -342,7 +342,8 @@ int CMraProto::AuthDeny(HANDLE hDBEvent, const TCHAR* szReason) int CMraProto::AuthRecv(HANDLE hContact, PROTORECVEVENT* pre)
{
- return Proto_AuthRecv(m_szModuleName, pre);
+ Proto_AuthRecv(m_szModuleName, pre);
+ return 0;
}
int CMraProto::AuthRequest(HANDLE hContact, const TCHAR *lptszMessage)
|