Only force logging of SSL if it actually was the SSL analyzer that

failed.
This commit is contained in:
Johanna Amann 2015-03-12 16:09:10 -07:00
parent 991e4f5dc3
commit 88beb31270

View file

@ -282,6 +282,6 @@ event protocol_confirmation(c: connection, atype: Analyzer::Tag, aid: count) &pr
event protocol_violation(c: connection, atype: Analyzer::Tag, aid: count,
reason: string) &priority=5
{
if ( c?$ssl )
if ( c?$ssl && atype == Analyzer::ANALYZER_SSL )
finish(c, T);
}