From 2e0c2035c9513f2a84e3d242adb22b076e324728 Mon Sep 17 00:00:00 2001 From: Johanna Amann Date: Thu, 4 Feb 2016 12:34:46 -0800 Subject: [PATCH] Add missing break; in StartTLS case of IRC analyzer. The missing break did not cause any issues besides one extra (unspecialized) event being fired in addition to the actual starttls event. Found by Aaron Eppert --- src/analyzer/protocol/irc/IRC.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/analyzer/protocol/irc/IRC.cc b/src/analyzer/protocol/irc/IRC.cc index 96449ead26..2809ff686f 100644 --- a/src/analyzer/protocol/irc/IRC.cc +++ b/src/analyzer/protocol/irc/IRC.cc @@ -572,6 +572,7 @@ void IRC_Analyzer::DeliverStream(int length, const u_char* line, bool orig) case 670: // StartTLS success reply to StartTLS StartTLS(); + break; // All other server replies. default: