Move Reporter to zeek namespace

This commit is contained in:
Tim Wojtulewicz 2020-07-20 10:57:36 -07:00
parent 7cedd94ee7
commit bfab224d7c
132 changed files with 1010 additions and 987 deletions

View file

@ -251,7 +251,7 @@ static zeek::VectorValPtr do_split_string(zeek::StringVal* str_val,
s += offset + end_of_match;;
if ( s > end_of_s )
reporter->InternalError("RegMatch in split goes beyond the string");
zeek::reporter->InternalError("RegMatch in split goes beyond the string");
}
return rval;
@ -308,7 +308,7 @@ zeek::Val* do_split(zeek::StringVal* str_val, zeek::RE_Matcher* re, int incl_sep
s += offset + end_of_match;;
if ( s > end_of_s )
reporter->InternalError("RegMatch in split goes beyond the string");
zeek::reporter->InternalError("RegMatch in split goes beyond the string");
}
return a;