Fix error text in IPTunnel analyzer

This commit is contained in:
Tim Wojtulewicz 2021-08-25 17:08:39 -07:00
parent ed798c6aba
commit 1dede6dd70

View file

@ -23,7 +23,7 @@ bool IPTunnelAnalyzer::AnalyzePacket(size_t len, const uint8_t* data, Packet* pa
{
if ( ! packet->ip_hdr )
{
reporter->InternalError("IPTunnelAnalyzer: ip_hdr not found in packet keystore");
reporter->InternalError("IPTunnelAnalyzer: null ip_hdr in packet");
return false;
}