5299d93aea
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/cyrus-sasl#e6b724063170dc972e127f012171504e9c52263a
23 lines
954 B
Diff
23 lines
954 B
Diff
--- a/sasldb/db_berkeley.c
|
|
+++ b/sasldb/db_berkeley.c
|
|
@@ -100,7 +100,7 @@ static int berkeleydb_open(const sasl_ut
|
|
ret = db_create(mbdb, NULL, 0);
|
|
if (ret == 0 && *mbdb != NULL)
|
|
{
|
|
-#if DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 1
|
|
+#if (DB_VERSION_MAJOR > 4) || ((DB_VERSION_MAJOR == 4) && (DB_VERSION_MINOR >= 1))
|
|
ret = (*mbdb)->open(*mbdb, NULL, path, NULL, DB_HASH, flags, 0660);
|
|
#else
|
|
ret = (*mbdb)->open(*mbdb, path, NULL, DB_HASH, flags, 0660);
|
|
--- a/utils/dbconverter-2.c
|
|
+++ b/utils/dbconverter-2.c
|
|
@@ -214,7 +214,7 @@ static int berkeleydb_open(const char *p
|
|
ret = db_create(mbdb, NULL, 0);
|
|
if (ret == 0 && *mbdb != NULL)
|
|
{
|
|
-#if DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 1
|
|
+#if (DB_VERSION_MAJOR > 4) || ((DB_VERSION_MAJOR == 4) && (DB_VERSION_MINOR >= 1))
|
|
ret = (*mbdb)->open(*mbdb, NULL, path, NULL, DB_HASH, DB_CREATE, 0664);
|
|
#else
|
|
ret = (*mbdb)->open(*mbdb, path, NULL, DB_HASH, DB_CREATE, 0664);
|