Do duplicate removal by sequence number always.

This commit is contained in:
Jonathan Naylor
2016-06-22 20:44:28 +01:00
parent 05e08a232f
commit 45bc8c736e

View File

@@ -395,8 +395,7 @@ void CYSFControl::writeNetwork()
m_netSeqNo = 0U;
} else {
// Check for duplicate frames, if we can
// XXX this needs changing in the future
if (m_netSeqNo == data[34U] && m_netSeqNo != 0U) {
if (m_netSeqNo == data[34U]) {
LogDebug("YSF, removing network duplicate, seq %u", data[34U] >> 1);
return;
}