Fixing compiler warning.

This commit is contained in:
Robin Sommer 2015-07-21 08:35:17 -07:00
parent 358f3bfe84
commit e4c6779a67
3 changed files with 9 additions and 3 deletions

View file

@ -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
Barber/Robin Sommer)

View file

@ -1 +1 @@
2.4-39
2.4-41

View file

@ -55,7 +55,7 @@ refine connection SSL_Conn += {
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;
}