Deprecate EventHandler::FType(), replace with GetType()

This commit is contained in:
Jon Siwek 2020-05-15 18:37:48 -07:00
parent 6aa1d0468d
commit 938ad35a43
5 changed files with 19 additions and 12 deletions

View file

@ -977,7 +977,7 @@ void Manager::ProcessEvent(const broker::topic& topic, broker::zeek::Event ev)
return;
}
const auto& arg_types = handler->FType(false)->ArgTypes()->Types();
const auto& arg_types = handler->GetType(false)->ArgTypes()->Types();
if ( arg_types.size() != args.size() )
{