Fix indentation of scripts / tests

No functional changes
This commit is contained in:
Johanna Amann 2025-07-03 11:41:40 +01:00
parent d42d467965
commit 359c7707e0
2 changed files with 5 additions and 5 deletions

View file

@ -37,11 +37,11 @@ global servers: table[int] of Val = table();
event zeek_init()
{
outfile = open("../out");
outfile = open("../out");
# first read in the old stuff into the table...
Input::add_table([$source="../input.log", $name="input", $idx=Idx, $val=Val, $destination=servers,
$pred(typ: Input::Event, left: Idx, right: Val) = { right$notb = !right$b; return T; }
]);
Input::add_table([$source="../input.log", $name="input", $idx=Idx, $val=Val, $destination=servers,
$pred(typ: Input::Event, left: Idx, right: Val) = { right$notb = !right$b; return T; }
]);
}
event Input::end_of_data(name: string, source: string)