From: Matti Hiljanen Date: Fri, 25 Sep 2020 05:54:18 +0000 (+0300) Subject: auth: bindbackend: 'rediscover' changes to master and also-notifies X-Git-Tag: auth-4.4.0-alpha1~4^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;ds=sidebyside;h=3b4c53dac99057520015c24605925c73b5a5f26d;p=thirdparty%2Fpdns.git auth: bindbackend: 'rediscover' changes to master and also-notifies --- diff --git a/modules/bindbackend/bindbackend2.cc b/modules/bindbackend/bindbackend2.cc index e7841a570d..78c8f0c6aa 100644 --- a/modules/bindbackend/bindbackend2.cc +++ b/modules/bindbackend/bindbackend2.cc @@ -934,6 +934,7 @@ void Bind2Backend::loadConfig(string* status) // overwrite what we knew about the domain bbd.d_name=i->name; bool filenameChanged = (bbd.d_filename!=i->filename); + bool addressesChanged = (bbd.d_masters!=i->masters || bbd.d_also_notify!=i->alsoNotify); bbd.d_filename=i->filename; bbd.d_masters=i->masters; bbd.d_also_notify=i->alsoNotify; @@ -986,8 +987,9 @@ void Bind2Backend::loadConfig(string* status) g_log< diff;