mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 08:08:19 +00:00
scripts: Migrate table iteration to blank identifiers
No obvious hot-cases. Maybe the describe_file() ones or the intel ones if/when there are hot intel hits.
This commit is contained in:
parent
46334f8b59
commit
8c5896a74d
17 changed files with 47 additions and 47 deletions
|
@ -246,7 +246,7 @@ event Cluster::node_down(name: string, id: string) &priority=10
|
|||
|
||||
function site_id_in_pool(pool: Pool, site_id: count): bool
|
||||
{
|
||||
for ( i, pn in pool$nodes )
|
||||
for ( _, pn in pool$nodes )
|
||||
{
|
||||
if ( pn$site_id == site_id )
|
||||
return T;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue