This commit is contained in:
@ -839,7 +839,7 @@ ReturnValue_t PlocSupervisorHandler::handleAckReport(const uint8_t* data) {
|
||||
using namespace supv;
|
||||
ReturnValue_t result = returnvalue::OK;
|
||||
|
||||
if (tmReader.checkCrc() != returnvalue::OK) {
|
||||
if (not tmReader.verifyCrc()) {
|
||||
sif::error << "PlocSupervisorHandler::handleAckReport: CRC failure" << std::endl;
|
||||
nextReplyId = supv::NONE;
|
||||
replyRawReplyIfnotWiretapped(data, supv::SIZE_ACK_REPORT);
|
||||
@ -878,7 +878,7 @@ ReturnValue_t PlocSupervisorHandler::handleExecutionReport(const uint8_t* data)
|
||||
using namespace supv;
|
||||
ReturnValue_t result = returnvalue::OK;
|
||||
|
||||
if (tmReader.checkCrc() != OK) {
|
||||
if (not tmReader.verifyCrc()) {
|
||||
nextReplyId = supv::NONE;
|
||||
return result::CRC_FAILURE;
|
||||
}
|
||||
|
Reference in New Issue
Block a user