SPDX: license tags (mostly by guesswork)
[exim.git] / src / src / lookups / lmdb.c
index a885badf11fcd6972309f0fdc1b29cb933f1afa2..ccfdbe453d332d919b8a8bf7ecb3732f7083870c 100644 (file)
@@ -2,9 +2,10 @@
 *     Exim - an Internet mail transport agent    *
 *************************************************/
 
+/* Copyright (c) The Exim Maintainers 2020 - 2022 */
 /* Copyright (c) University of Cambridge 2016 - 2018 */
-/* Copyright (c) The Exim Maintainers 2020 - 2021 */
 /* See the file NOTICE for conditions of use and distribution. */
+/* SPDX-License-Identifier: GPL-2.0-only */
 
 #include "../exim.h"
 
@@ -31,7 +32,7 @@ Lmdbstrct * lmdb_p;
 int ret, save_errno;
 const uschar * errstr;
 
-lmdb_p = store_get(sizeof(Lmdbstrct), FALSE);
+lmdb_p = store_get(sizeof(Lmdbstrct), GET_UNTAINTED);
 lmdb_p->txn = NULL;
 
 if ((ret = mdb_env_create(&db_env)))
@@ -130,10 +131,9 @@ mdb_env_close(db_env);
 #include "../version.h"
 
 gstring *
-lmdb_version_report(BOOL is_stdout)
+lmdb_version_report(gstring * g)
 {
-gstring * g = string_fmt_append(g,
-                        "Library version: LMDB: Compile: %d.%d.%d\n",
+g = string_fmt_append(g, "Library version: LMDB: Compile: %d.%d.%d\n",
                          MDB_VERSION_MAJOR, MDB_VERSION_MINOR, MDB_VERSION_PATCH);
 #ifdef DYNLOOKUP
 g = string_fmt_append(g, "                        Exim version %s\n", EXIM_VERSION_STR);