Blame SOURCES/0008-Issue-4773-Enable-interval-feature-of-DNA-plugin.patch

e4a41f
From 40e9a4835a6e95f021a711a7c42ce0c1bddc5ba4 Mon Sep 17 00:00:00 2001
e4a41f
From: Mark Reynolds <mreynolds@redhat.com>
e4a41f
Date: Fri, 21 May 2021 13:09:12 -0400
e4a41f
Subject: [PATCH 08/12] Issue 4773 - Enable interval feature of DNA plugin
e4a41f
e4a41f
Description:  Enable the dormant interval feature in DNA plugin
e4a41f
e4a41f
relates: https://github.com/389ds/389-ds-base/issues/4773
e4a41f
e4a41f
Review by: mreynolds (one line commit rule)
e4a41f
---
e4a41f
 ldap/servers/plugins/dna/dna.c | 2 --
e4a41f
 1 file changed, 2 deletions(-)
e4a41f
e4a41f
diff --git a/ldap/servers/plugins/dna/dna.c b/ldap/servers/plugins/dna/dna.c
e4a41f
index bf6b74a99..928a3f54a 100644
e4a41f
--- a/ldap/servers/plugins/dna/dna.c
e4a41f
+++ b/ldap/servers/plugins/dna/dna.c
e4a41f
@@ -1023,7 +1023,6 @@ dna_parse_config_entry(Slapi_PBlock *pb, Slapi_Entry *e, int apply)
e4a41f
     /* Set the default interval to 1 */
e4a41f
     entry->interval = 1;
e4a41f
 
e4a41f
-#ifdef DNA_ENABLE_INTERVAL
e4a41f
     value = slapi_entry_attr_get_charptr(e, DNA_INTERVAL);
e4a41f
     if (value) {
e4a41f
         entry->interval = strtoull(value, 0, 0);
e4a41f
@@ -1032,7 +1031,6 @@ dna_parse_config_entry(Slapi_PBlock *pb, Slapi_Entry *e, int apply)
e4a41f
 
e4a41f
     slapi_log_err(SLAPI_LOG_CONFIG, DNA_PLUGIN_SUBSYSTEM,
e4a41f
                   "dna_parse_config_entry - %s [%" PRIu64 "]\n", DNA_INTERVAL, entry->interval);
e4a41f
-#endif
e4a41f
 
e4a41f
     value = slapi_entry_attr_get_charptr(e, DNA_GENERATE);
e4a41f
     if (value) {
e4a41f
-- 
e4a41f
2.26.3
e4a41f