Rename types in ZeekList.h to be consistent with the style guide

This commit is contained in:
Tim Wojtulewicz 2020-08-19 16:26:01 -07:00
parent a34e632eef
commit 01ce18894b
37 changed files with 163 additions and 163 deletions

View file

@ -625,13 +625,13 @@ void File::FileEvent(zeek::EventHandlerPtr h)
FileEvent(h, zeek::Args{val});
}
void File::FileEvent(zeek::EventHandlerPtr h, val_list* vl)
void File::FileEvent(zeek::EventHandlerPtr h, ValPList* vl)
{
FileEvent(h, zeek::val_list_to_args(*vl));
delete vl;
}
void File::FileEvent(zeek::EventHandlerPtr h, val_list vl)
void File::FileEvent(zeek::EventHandlerPtr h, ValPList vl)
{
FileEvent(h, zeek::val_list_to_args(vl));
}