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
This commit is contained in:
Johanna Amann 2016-02-04 12:34:46 -08:00
parent 9ec6927cc1
commit 2e0c2035c9

View file

@ -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: