From 9ac51900f686c2cb8ca8aa679b5a3be6b4355ff7 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Sun, 30 Oct 2011 12:38:43 +0100 Subject: [PATCH] Fix broken macro call. --- src/flow-timeout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flow-timeout.c b/src/flow-timeout.c index 49e899cb03..4b35e7d579 100644 --- a/src/flow-timeout.c +++ b/src/flow-timeout.c @@ -166,7 +166,7 @@ static inline Packet *FlowForceReassemblyPseudoPacketSetup(Packet *p, } /* set the tcp header */ - p->tcph = (TCPHdr *)((uint8_t *)GET_PACKET_DATA(p) + 40); + p->tcph = (TCPHdr *)((uint8_t *)GET_PKT_DATA(p) + 40); } p->tcph->th_offx2 = 0x50;