Merge pull request #12967 from SimonWalton-HiFi/hmac-shortid-merge-fix

Fix for null sourceNode use
This commit is contained in:
John Conklin II 2018-04-23 14:11:06 -07:00 committed by GitHub
commit 91197cadcf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -617,7 +617,7 @@ bool DomainServer::isPacketVerified(const udt::Packet& packet) {
}
} else {
HIFI_FDEBUG("Packet of type" << headerType
<< "received from unknown node with UUID" << uuidStringWithoutCurlyBraces(sourceNode->getUUID()));
<< "received from unknown node with Local ID" << localSourceID);
return false;
}
}

View file

@ -358,7 +358,7 @@ bool LimitedNodeList::packetSourceAndHashMatchAndTrackBandwidth(const udt::Packe
} else {
HIFI_FCDEBUG(networking(),
"Packet of type" << headerType << "received from unknown node with UUID" << uuidStringWithoutCurlyBraces(sourceID));
"Packet of type" << headerType << "received from unknown node with Local ID" << sourceLocalID);
}
}