diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2018-04-03 04:12:09 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2018-04-03 04:12:09 +0300 |
commit | 2c431e118800147b0f67966c173b2fe1d6247832 (patch) | |
tree | 5985fb0bcf4e8885d9ccd434a3f9c4cf252a4260 /protocols | |
parent | 75bf7aca58eb71f1be4d5518374a94213ae08e60 (diff) |
protocols: jabber: typo fix
Diffstat (limited to 'protocols')
-rwxr-xr-x | protocols/JabberG/src/jabber_strm_mgmt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_strm_mgmt.cpp b/protocols/JabberG/src/jabber_strm_mgmt.cpp index cf48e5610b..070e747913 100755 --- a/protocols/JabberG/src/jabber_strm_mgmt.cpp +++ b/protocols/JabberG/src/jabber_strm_mgmt.cpp @@ -106,7 +106,7 @@ void strm_mgmt::OnProcessSMa(HXML node) void strm_mgmt::ResendNodes(uint32_t size)
{
- if (size > NodeCache.size())
+ if (size < NodeCache.size())
{
const size_t diff = NodeCache.size() - size;
if (diff)
|