diff options
author | George Hazan <george.hazan@gmail.com> | 2014-07-12 16:22:27 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-07-12 16:22:27 +0000 |
commit | 8f57f4e8597c8eae88c1e869aa51188e67788142 (patch) | |
tree | 84b2bc0b9276b247f5d234c6b1a1c56279830629 /protocols/IcqOscarJ/src/icq_server.cpp | |
parent | c1d0bec52e19d51117b05d3f7d80a366df657817 (diff) |
- keep-alive thread removed;
- boolean variables obtained type bool
git-svn-id: http://svn.miranda-ng.org/main/trunk@9775 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/IcqOscarJ/src/icq_server.cpp')
-rw-r--r-- | protocols/IcqOscarJ/src/icq_server.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/IcqOscarJ/src/icq_server.cpp b/protocols/IcqOscarJ/src/icq_server.cpp index ca86fa0eca..6a1aadeab3 100644 --- a/protocols/IcqOscarJ/src/icq_server.cpp +++ b/protocols/IcqOscarJ/src/icq_server.cpp @@ -125,6 +125,8 @@ void __cdecl CIcqProto::ServerThread(serverthread_start_info *infoParam) if (dwError == ERROR_TIMEOUT) {
if (m_iDesiredStatus == ID_STATUS_OFFLINE)
break;
+
+ CheckKeepAlive(&info);
continue;
}
if (dwError == WSAESHUTDOWN) // ok, we're going offline
|