]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Fix comment
authorFred Morcos <fred.morcos@open-xchange.com>
Thu, 5 Sep 2024 10:55:11 +0000 (12:55 +0200)
committerFred Morcos <fred.morcos@open-xchange.com>
Thu, 5 Sep 2024 10:55:11 +0000 (12:55 +0200)
modules/lmdbbackend/lmdbbackend.cc

index 5416b79209bc15514e11a05e5531c34e7118c278..afb2097bf95b3e093946573faabc4789e3d5603a 100644 (file)
@@ -133,7 +133,8 @@ std::pair<uint32_t, uint32_t> LMDBBackend::getSchemaVersionAndShards(std::string
     int rc = mdb_get(txn, dbi, &key, &data);
     if (rc != 0) {
       if (rc == MDB_NOTFOUND) {
-        // this means nothing has been inited yet we pretend this means 5
+        // this means nothing has been inited yet
+        // we pretend this means 5
         mdb_txn_abort(txn);
         return {5u, 0u};
       }