1
0
Fork 0
mirror of https://github.com/pavel-odintsov/fastnetmon synced 2024-05-10 04:26:11 +02:00

Pushed typo reported by Patrick Matthäi

This commit is contained in:
Pavel Odintsov 2023-11-05 11:45:17 +01:00
parent 1faae9e401
commit 813edf9f38

View File

@ -1124,7 +1124,7 @@ bool process_ipfix_packet(const uint8_t* packet,
const ipfix_header_t* ipfix_header = (const ipfix_header_t*)packet;
if (udp_packet_length < sizeof(ipfix_header_t)) {
logger << log4cpp::Priority::ERROR << "Packet is too short to accomodate IPFIX header " << udp_packet_length
logger << log4cpp::Priority::ERROR << "Packet is too short to accommodate IPFIX header " << udp_packet_length
<< " bytes which requires at least " << sizeof(ipfix_header_t) << " bytes";
return false;
}