diff --git a/CHANGES b/CHANGES index 9d600b6fda..13f90e9180 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,8 @@ +2.5-967 | 2018-09-05 19:30:48 +0000 + + * Fix printf format specification for reporting packet stats. (Robin Sommer, Corelight) + 2.5-965 | 2018-09-04 17:17:36 -0500 * Updates to NTLM script handling. (Seth Hall, Corelight) diff --git a/VERSION b/VERSION index 63620a7ffd..699637b8cc 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.5-965 +2.5-967 diff --git a/aux/bifcl b/aux/bifcl index 2c106da5c5..b0ba021208 160000 --- a/aux/bifcl +++ b/aux/bifcl @@ -1 +1 @@ -Subproject commit 2c106da5c56f0c864f9894dff21bd6557ef219eb +Subproject commit b0ba021208c0c5fe8d7c92412b919d6667f63961 diff --git a/aux/binpac b/aux/binpac index 090d2614a6..ff8c94964f 160000 --- a/aux/binpac +++ b/aux/binpac @@ -1 +1 @@ -Subproject commit 090d2614a6dfd2a354cb36f890f9d52557300c74 +Subproject commit ff8c94964fccbf60abae401d03c9fb35a8894c16 diff --git a/aux/bro-aux b/aux/bro-aux index 2c37ea379b..9866d31e45 160000 --- a/aux/bro-aux +++ b/aux/bro-aux @@ -1 +1 @@ -Subproject commit 2c37ea379bc25dd4b4fd38ee2bb40068e5418a2b +Subproject commit 9866d31e45f5e1467c0f1fd4a1cd9948b067ce43 diff --git a/aux/broccoli b/aux/broccoli index 9e6290ee3f..1898e81bba 160000 --- a/aux/broccoli +++ b/aux/broccoli @@ -1 +1 @@ -Subproject commit 9e6290ee3f398141d90995bb766163218e9076a8 +Subproject commit 1898e81bba7c595108bc20c5148df7f0f6a2258f diff --git a/aux/broctl b/aux/broctl index 9455886e95..a88cb3434e 160000 --- a/aux/broctl +++ b/aux/broctl @@ -1 +1 @@ -Subproject commit 9455886e959b5d9ddeccc86ae5428706e2424237 +Subproject commit a88cb3434e05dbb117687f6152acc8892ed969ca diff --git a/aux/broker b/aux/broker index 96c574a9de..a3e188680c 160000 --- a/aux/broker +++ b/aux/broker @@ -1 +1 @@ -Subproject commit 96c574a9de7709d73715a91368a5ef52de1af6ef +Subproject commit a3e188680cd2889edbb9cf09c01fb1f031a90975 diff --git a/src/3rdparty b/src/3rdparty index bfbdec713e..7c95b51de2 160000 --- a/src/3rdparty +++ b/src/3rdparty @@ -1 +1 @@ -Subproject commit bfbdec713eaa9d20457c36d84202a348b5383e15 +Subproject commit 7c95b51de202ac534b27dd721da5778b773dd614 diff --git a/src/Net.cc b/src/Net.cc index 4357f122ca..89b19ed0fb 100644 --- a/src/Net.cc +++ b/src/Net.cc @@ -421,7 +421,7 @@ void net_get_final_stats() { iosource::PktSrc::Stats s; ps->Statistics(&s); - reporter->Info("%d packets received on interface %s, %d dropped", + reporter->Info("%u packets received on interface %s, %u dropped", s.received, ps->Path().c_str(), s.dropped); } }