Some file format cleanup.

This commit is contained in:
Adam Ierymenko 2013-09-17 15:46:56 -04:00
parent 0133da1dcd
commit b2b24ca41b
6 changed files with 6 additions and 2 deletions

View file

@ -178,7 +178,7 @@ public:
throw()
{
for(unsigned int i=0;i<ZT_MULTICAST_DEDUP_HISTORY_LENGTH;++i) {
if ((_multicastHistory[i][0] == crc)&&((now - _multicastHistory[i][1]) < ZT_MULTICAST_DEDUP_HISTORY_EXPIRE))
if ((_multicastHistory[i][0] == crc)&&((now - _multicastHistory[i][1]) <= ZT_MULTICAST_DEDUP_HISTORY_EXPIRE))
return true;
}
return false;