From: bert hubert Date: Fri, 10 May 2019 09:48:40 +0000 (+0200) Subject: add 'sync' to --help X-Git-Tag: auth-4.2.0-rc2~6^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=83daa12741cbf01025c7d0a2466eec237143c891;p=thirdparty%2Fpdns.git add 'sync' to --help --- diff --git a/modules/lmdbbackend/lmdbbackend.cc b/modules/lmdbbackend/lmdbbackend.cc index 1c3bdc7155..db40143f55 100644 --- a/modules/lmdbbackend/lmdbbackend.cc +++ b/modules/lmdbbackend/lmdbbackend.cc @@ -1591,7 +1591,7 @@ public: void declareArguments(const string &suffix="") { declare(suffix,"filename","Filename for lmdb","./pdns.lmdb"); - declare(suffix,"sync-mode","Synchronisation mode: nosync, nometasync, mapasync","mapasync"); + declare(suffix,"sync-mode","Synchronisation mode: nosync, nometasync, mapasync, sync","mapasync"); // there just is no room for more on 32 bit declare(suffix,"shards","Records database will be split into this number of shards", (sizeof(long) == 4) ? "2" : "64"); }