From: Miod Vallat Date: Thu, 12 Feb 2026 15:41:36 +0000 (+0100) Subject: Fix polarity of setting description. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de2ce3557f88a638c67b4d6d52c0605d1a9e55d8;p=thirdparty%2Fpdns.git Fix polarity of setting description. This was forgotten after this setting changed name and polarity. Signed-off-by: Miod Vallat --- diff --git a/modules/lmdbbackend/lmdbbackend.cc b/modules/lmdbbackend/lmdbbackend.cc index f1409dd86e..fb35dfbe7f 100644 --- a/modules/lmdbbackend/lmdbbackend.cc +++ b/modules/lmdbbackend/lmdbbackend.cc @@ -3530,7 +3530,7 @@ public: declare(suffix, "map-size", "main LMDB map size in megabytes", (sizeof(void*) == 4) ? "100" : "16000"); declare(suffix, "shards-map-size", "shard LMDB map size in megabytes, zero to use the same size as main", "0"); declare(suffix, "flag-deleted", "Flag entries on deletion instead of deleting them", "no"); - declare(suffix, "write-notification-update", "Do not update domain table upon notification", "yes"); + declare(suffix, "write-notification-update", "Update domain table upon notification", "yes"); declare(suffix, "lightning-stream", "Run in Lightning Stream compatible mode", "no"); } DNSBackend* make(const string& suffix = "") override