mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 15:48:19 +00:00
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:
parent
8015e35747
commit
2cfe2c292d
1 changed files with 1 additions and 1 deletions
|
@ -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%);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue