33 lines
960 B
Diff
33 lines
960 B
Diff
From 76d1b4ff8efdff1dbe6139b51da656880d7a8ec6 Mon Sep 17 00:00:00 2001
|
|
From: progier389 <progier@redhat.com>
|
|
Date: Wed, 26 May 2021 16:07:43 +0200
|
|
Subject: [PATCH 2/2] Issue 4764 - replicated operation sometime checks ACI
|
|
(#4783)
|
|
|
|
---
|
|
ldap/servers/slapd/connection.c | 8 ++++++++
|
|
1 file changed, 8 insertions(+)
|
|
|
|
diff --git a/ldap/servers/slapd/connection.c b/ldap/servers/slapd/connection.c
|
|
index 1883fe711..02c02ffb6 100644
|
|
--- a/ldap/servers/slapd/connection.c
|
|
+++ b/ldap/servers/slapd/connection.c
|
|
@@ -1764,6 +1764,14 @@ connection_threadmain()
|
|
}
|
|
}
|
|
|
|
+ /*
|
|
+ * Fix bz 1931820 issue (the check to set OP_FLAG_REPLICATED may be done
|
|
+ * before replication session is properly set).
|
|
+ */
|
|
+ if (replication_connection) {
|
|
+ operation_set_flag(op, OP_FLAG_REPLICATED);
|
|
+ }
|
|
+
|
|
/*
|
|
* Call the do_<operation> function to process this request.
|
|
*/
|
|
--
|
|
2.31.1
|
|
|