ldap/servers/slapd/opshared.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
New commits: commit da3be3fbf497775f608d1289f72cfe427850f950 Author: Ludwig Krispenz lkrispen@redhat.com Date: Mon Mar 11 11:18:08 2013 +0100
Fix optimization issue introduced with fix for ticket #561, fix approved by Noriko
diff --git a/ldap/servers/slapd/opshared.c b/ldap/servers/slapd/opshared.c index 1f94a57..747b634 100644 --- a/ldap/servers/slapd/opshared.c +++ b/ldap/servers/slapd/opshared.c @@ -52,7 +52,8 @@ static void compute_limits (Slapi_PBlock *pb);
/* attributes that no clients are allowed to add or modify */ -static char *protected_attrs_all [] = { PSEUDO_ATTR_UNHASHEDUSERPASSWORD }; +static char *protected_attrs_all [] = { PSEUDO_ATTR_UNHASHEDUSERPASSWORD, + NULL }; static char *pwpolicy_lock_attrs_all [] = { "passwordRetryCount", "retryCountResetTime", "accountUnlockTime",
389-commits@lists.fedoraproject.org