mirror of
https://github.com/zeek/zeek.git
synced 2025-10-17 14:08:20 +00:00
Do not change global event parameters in exec.bro
Addresses BIT-1294
This commit is contained in:
parent
d17aedcc44
commit
5836feb64d
1 changed files with 2 additions and 1 deletions
|
@ -96,8 +96,9 @@ event Exec::file_line(description: Input::EventDescription, tpe: Input::Event, s
|
|||
result$files[track_file][|result$files[track_file]|] = s;
|
||||
}
|
||||
|
||||
event Input::end_of_data(name: string, source:string)
|
||||
event Input::end_of_data(orig_name: string, source:string)
|
||||
{
|
||||
local name = orig_name;
|
||||
local parts = split1(name, /_/);
|
||||
name = parts[1];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue