Update scripts/base/frameworks/software/main.zeek

Add appropriate white space in if statement

Co-authored-by: Arne Welzel <awelzel@users.noreply.github.com>
This commit is contained in:
Justin 2025-05-05 15:08:37 -04:00 committed by GitHub
parent e8de3de2d4
commit 1f34645335
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -527,7 +527,7 @@ function found(id: conn_id, info: Info): bool
return F; return F;
# This assumes that callers do not fill in info$ts, none of the current callers do. # This assumes that callers do not fill in info$ts, none of the current callers do.
if (info in found_cache) if ( info in found_cache )
return T; return T;
add found_cache[info]; add found_cache[info];