From 245d49487791ad1c077b827a7feef8ab6b1536e1 Mon Sep 17 00:00:00 2001 From: Mark Reynolds Date: Tue, 6 Mar 2012 14:22:51 -0500 Subject: [PATCH] Config changes fail because of unknown attribute "internalModifiersname" Fix Description: need to add internalModifiersname to the attributes to ignore Reviewed by: richm (Thanks Rich!) --- ldap/servers/slapd/configdse.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/ldap/servers/slapd/configdse.c b/ldap/servers/slapd/configdse.c index d6dddb2..4046563 100644 --- a/ldap/servers/slapd/configdse.c +++ b/ldap/servers/slapd/configdse.c @@ -115,6 +115,7 @@ ignore_attr_type(const char *attr_type) (strcasecmp (attr_type, "aci") == 0) || (strcasecmp (attr_type, "objectclass") == 0) || (strcasecmp (attr_type, "numsubordinates") == 0) || + (strcasecmp (attr_type, "internalModifiersname") == 0) || (strcasecmp (attr_type, "modifytimestamp") == 0) || (strcasecmp (attr_type, "modifiersname") == 0)) { return 1; -- 1.7.1