mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 18:48:20 +00:00
Turning DNS errors into a warning.
It seems these errors aren't Bro's fault, and in any case it's clearly not an internal error. This should finally solve the problem in #255. Closes #255.
This commit is contained in:
parent
cb31fd3bb9
commit
46d3570bf5
1 changed files with 1 additions and 1 deletions
|
@ -1071,7 +1071,7 @@ void DNS_Mgr::Process()
|
|||
int status = nb_dns_activity(nb_dns, &r, err);
|
||||
|
||||
if ( status < 0 )
|
||||
reporter->InternalError("NB-DNS error in DNS_Mgr::Process (%s)", err);
|
||||
reporter->Warning("NB-DNS error in DNS_Mgr::Process (%s)", err);
|
||||
|
||||
else if ( status > 0 )
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue