Merge fix

This commit is contained in:
Simon Walton 2018-04-20 11:13:15 -07:00
parent 9f9a68188d
commit ed0fd8c4d2

View file

@ -612,13 +612,13 @@ bool DomainServer::isPacketVerified(const udt::Packet& packet) {
return nodeList->isPacketVerifiedWithSource(packet, sourceNode.data());
} else {
HIFI_FDEBUG("Packet of type" << headerType
<< "received from unmatched IP for UUID" << uuidStringWithoutCurlyBraces(sourceID));
<< "received from unmatched IP for UUID" << uuidStringWithoutCurlyBraces(sourceNode->getUUID()));
return false;
}
} else {
HIFI_FDEBUG("Packet of type" << headerType
<< "received from unknown node with UUID" << uuidStringWithoutCurlyBraces(sourceID));
<< "received from unknown node with UUID" << uuidStringWithoutCurlyBraces(sourceNode->getUUID()));
return false;
}