diff --git a/gtests/net/packetdrill/run_packet.c b/gtests/net/packetdrill/run_packet.c index 86da29d20b801781a2c504c6bba26580e4188981..fa4033bef4b955eaa9ce54068e82db8a117472bb 100644 --- a/gtests/net/packetdrill/run_packet.c +++ b/gtests/net/packetdrill/run_packet.c @@ -600,7 +600,8 @@ static int map_inbound_icmp_tcp_packet( struct socket *socket, struct packet *live_packet, char **error) { u32 *seq = packet_echoed_tcp_seq(live_packet); - bool is_syn = live_packet->tcp->syn; + /* FIXME: There is currently no way to access the TCP flags */ + bool is_syn = false; u32 seq_offset = local_seq_script_to_live_offset(socket, is_syn); *seq = htonl(ntohl(*seq) + seq_offset); return STATUS_OK;