From c263dc9b2bf38206b42c7ad597956d07a25b739d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Uhliarik?= Date: Wed, 25 Oct 2023 15:28:01 +0200 Subject: [PATCH] Fix db_size --- apr-util-1.6.3-lmdb-support.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apr-util-1.6.3-lmdb-support.patch b/apr-util-1.6.3-lmdb-support.patch index b85f701..440d3d9 100644 --- a/apr-util-1.6.3-lmdb-support.patch +++ b/apr-util-1.6.3-lmdb-support.patch @@ -364,7 +364,7 @@ index 0000000..fe76779 + if (dberr == 0) { + /* Default to 2GB map size which limits the total database + * size to something reasonable. */ -+ dberr = mdb_env_set_mapsize(file.env, UINT32_MAX); ++ dberr = mdb_env_set_mapsize(file.env, INT32_MAX); + } + + if (dberr == 0) {