From e4c6779a67a3e22bc9bb38f20d10e4c26e4b340c Mon Sep 17 00:00:00 2001 From: Robin Sommer Date: Tue, 21 Jul 2015 08:35:17 -0700 Subject: [PATCH] Fixing compiler warning. --- CHANGES | 8 +++++++- VERSION | 2 +- src/analyzer/protocol/ssl/dtls-analyzer.pac | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 97665cf843..a8086af261 100644 --- a/CHANGES +++ b/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 Barber/Robin Sommer) diff --git a/VERSION b/VERSION index 134135de59..ab3d92f8ce 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.4-39 +2.4-41 diff --git a/src/analyzer/protocol/ssl/dtls-analyzer.pac b/src/analyzer/protocol/ssl/dtls-analyzer.pac index c29c5a785f..c38ebdf029 100644 --- a/src/analyzer/protocol/ssl/dtls-analyzer.pac +++ b/src/analyzer/protocol/ssl/dtls-analyzer.pac @@ -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; }