diff options
author | George Hazan <george.hazan@gmail.com> | 2013-02-12 20:44:55 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-02-12 20:44:55 +0000 |
commit | 82016434fff2eb8ed8288c0c45bc76a67574860d (patch) | |
tree | f0771b2391899c61960c27af13d5e046f0d087d2 /plugins/YAMN/src/proto/netlib.cpp | |
parent | c989c00ce9e0a8422e7efb3c21350ca3f5276d86 (diff) |
- fix for chinese in popups;
- own md5 module removed;
- version bump;
- code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@3585 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/YAMN/src/proto/netlib.cpp')
-rw-r--r-- | plugins/YAMN/src/proto/netlib.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/YAMN/src/proto/netlib.cpp b/plugins/YAMN/src/proto/netlib.cpp index 652715d771..cfe3b20c48 100644 --- a/plugins/YAMN/src/proto/netlib.cpp +++ b/plugins/YAMN/src/proto/netlib.cpp @@ -151,7 +151,7 @@ void CNLClient::Send(const char *query) throw(DWORD) #endif
try
{
- if ((SOCKET_ERROR==(Sent=LocalNetlib_Send(hConnection,query,(int)strlen(query),MSG_DUMPASTEXT))) || Sent!=(unsigned int)strlen(query))
+ if ((SOCKET_ERROR==(Sent=LocalNetlib_Send(hConnection,query,(int)strlen(query),MSG_DUMPASTEXT))) || Sent != (unsigned int)strlen(query))
{
SystemError=WSAGetLastError();
throw NetworkError=(DWORD)ENL_SEND;
|