From 0fc082fec49dd7ff039fda33ccb85dcaace2ae6b Mon Sep 17 00:00:00 2001 From: "Tom Peters (thopeter)" Date: Tue, 13 Mar 2018 18:19:51 -0400 Subject: [PATCH] Merge pull request #1136 in SNORT/snort3 from union_break to master Squashed commit of the following: commit 672c117af90d935d65248f2b648b8d955afbc885 Author: Tom Peters Date: Tue Mar 13 17:49:01 2018 -0400 libtcp: build error fix --- src/stream/libtcp/tcp_stream_session.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stream/libtcp/tcp_stream_session.h b/src/stream/libtcp/tcp_stream_session.h index 9b2bcda3a..8c171931f 100644 --- a/src/stream/libtcp/tcp_stream_session.h +++ b/src/stream/libtcp/tcp_stream_session.h @@ -145,8 +145,8 @@ public: TcpEventLogger tel; private: - snort::ip::snort_in6_addr real_src_ip = { 0 }; - snort::ip::snort_in6_addr real_dst_ip = { 0 }; + snort::ip::snort_in6_addr real_src_ip; + snort::ip::snort_in6_addr real_dst_ip; uint16_t real_src_port = 0; uint16_t real_dst_port = 0; -- 2.47.3