From 46d3570bf5af366170b408a04e94062f03fb28ff Mon Sep 17 00:00:00 2001 From: Robin Sommer Date: Fri, 12 Aug 2011 22:29:38 -0700 Subject: [PATCH] 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. --- src/DNS_Mgr.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DNS_Mgr.cc b/src/DNS_Mgr.cc index 8776f69d55..e6bebda875 100644 --- a/src/DNS_Mgr.cc +++ b/src/DNS_Mgr.cc @@ -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 ) {