Fix an event from the file extraction analyzer.

The "file_extraction_limit" event was passing a Files::AnalyzerArgs
record as an "any" type.  This is not right at the least and may
have been causing a crash for a user at worst.
This commit is contained in:
Seth Hall 2016-08-28 21:30:42 -04:00
parent 8015e35747
commit 2cfe2c292d

View file

@ -14,4 +14,4 @@
## len: The length of the file chunk about to be written.
##
## .. bro:see:: Files::add_analyzer Files::ANALYZER_EXTRACT
event file_extraction_limit%(f: fa_file, args: any, limit: count, len: count%);
event file_extraction_limit%(f: fa_file, args: Files::AnalyzerArgs, limit: count, len: count%);