From a1a9b41a71b945223b0d6d81b4e537e0da85e560 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Thu, 4 Apr 2024 09:00:03 +0200 Subject: [PATCH] decode/icmpv4: no need to pack the structure --- src/decode-icmpv4.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/decode-icmpv4.h b/src/decode-icmpv4.h index 87bcd9bd75..1f4f486298 100644 --- a/src/decode-icmpv4.h +++ b/src/decode-icmpv4.h @@ -166,7 +166,7 @@ typedef struct ICMPV4Hdr_ uint8_t type; uint8_t code; uint16_t checksum; -} __attribute__((__packed__)) ICMPV4Hdr; +} ICMPV4Hdr; /* ICMPv4 header structure */ typedef struct ICMPV4ExtHdr_