From: bert hubert Date: Thu, 23 Oct 2014 17:28:36 +0000 (+0200) Subject: make very sure we don't keel over if something goes wrong polling security status... X-Git-Tag: auth-3.4.1~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2fda71f20354a99ff873130131a70f60a6c26771;p=thirdparty%2Fpdns.git make very sure we don't keel over if something goes wrong polling security status in auth --- diff --git a/pdns/common_startup.cc b/pdns/common_startup.cc index 824f8e8fd1..656efe615d 100644 --- a/pdns/common_startup.cc +++ b/pdns/common_startup.cc @@ -413,7 +413,10 @@ void mainthread() for(;;) { sleep(1800); - doSecPoll(false); + try { + doSecPoll(false); + } + catch(...){} } L<