Update deprecated ValManager GetTrue/GetFalse usages

This commit is contained in:
Jon Siwek 2020-04-07 20:41:58 -07:00
parent 202b3f877d
commit 9af84bb2b0
24 changed files with 219 additions and 219 deletions

View file

@ -75,9 +75,9 @@ function Files::__analyzer_name%(tag: Files::Tag%) : string
function Files::__file_exists%(fuid: string%): bool
%{
if ( file_mgr->LookupFile(fuid->CheckString()) != nullptr )
return val_mgr->GetTrue();
return val_mgr->True();
else
return val_mgr->GetFalse();
return val_mgr->False();
%}
## :zeek:see:`Files::lookup_file`.