Bugfix: Preflight check failure strings should not be repeated for each frame in the stream that fails

This commit is contained in:
Srivats P 2016-03-17 20:53:48 +05:30
parent ad866e3025
commit 476bcd850a

View File

@ -571,13 +571,18 @@ bool StreamBase::preflightCheck(QString &result) const
"frame length should be at least %1.\n")
.arg(frameProtocolLength(i) + kFcsSize);
pass = false;
break;
}
}
for (int i = 0; i < count; i++)
{
if (frameLen(i) > 1522)
{
result += QString("Jumbo frames may be truncated or dropped "
"if not supported by the hardware\n");
pass = false;
break;
}
}