mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Fix cid propagation into files.log
Changes to the connection id were not propagated to files.log in all cases. Fixes GH-3700
This commit is contained in:
parent
07c84fddbc
commit
2217eab38a
1 changed files with 1 additions and 1 deletions
|
@ -603,7 +603,7 @@ event file_state_remove(f: fa_file) &priority=-10
|
|||
# by reference in Log::write() rather than by copy.
|
||||
local info = |f$conns| > 1 ? copy(f$info) : f$info;
|
||||
info$uid = c$uid;
|
||||
info$id = cid;
|
||||
info$id = c$id;
|
||||
Log::write(Files::LOG, info);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue