mirror of
https://github.com/zeek/zeek.git
synced 2025-10-03 07:08:19 +00:00
Fixing compiler warning.
This commit is contained in:
parent
358f3bfe84
commit
e4c6779a67
3 changed files with 9 additions and 3 deletions
8
CHANGES
8
CHANGES
|
@ -1,5 +1,11 @@
|
||||||
|
|
||||||
2.4-39 | 2015-07-20 15:30:35 -0700
|
2.4-41 | 2015-07-21 08:35:17 -0700
|
||||||
|
|
||||||
|
* Fixing compiler warning. (Robin Sommer)
|
||||||
|
|
||||||
|
* Updates to IANA TLS registry. (Johanna Amann)
|
||||||
|
|
||||||
|
2.4-38 | 2015-07-20 15:30:35 -0700
|
||||||
|
|
||||||
* Refactor code to use a common Packet type throught. (Jeff
|
* Refactor code to use a common Packet type throught. (Jeff
|
||||||
Barber/Robin Sommer)
|
Barber/Robin Sommer)
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
2.4-39
|
2.4-41
|
||||||
|
|
|
@ -55,7 +55,7 @@ refine connection SSL_Conn += {
|
||||||
|
|
||||||
if ( length > MAX_DTLS_HANDSHAKE_RECORD )
|
if ( length > MAX_DTLS_HANDSHAKE_RECORD )
|
||||||
{
|
{
|
||||||
bro_analyzer()->ProtocolViolation(fmt("DTLS record length %lld larger than allowed maximum.", length));
|
bro_analyzer()->ProtocolViolation(fmt("DTLS record length %" PRId64 " larger than allowed maximum.", length));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue