mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 16:48:19 +00:00
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:
parent
9ec6927cc1
commit
2e0c2035c9
1 changed files with 1 additions and 0 deletions
|
@ -572,6 +572,7 @@ void IRC_Analyzer::DeliverStream(int length, const u_char* line, bool orig)
|
||||||
case 670:
|
case 670:
|
||||||
// StartTLS success reply to StartTLS
|
// StartTLS success reply to StartTLS
|
||||||
StartTLS();
|
StartTLS();
|
||||||
|
break;
|
||||||
|
|
||||||
// All other server replies.
|
// All other server replies.
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue