]> git.ipfire.org Git - thirdparty/openldap.git/commitdiff
ITS#3560: fix "chldren:" typo
authorKurt Zeilenga <kurt@openldap.org>
Tue, 22 Feb 2005 17:29:37 +0000 (17:29 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Tue, 22 Feb 2005 17:29:37 +0000 (17:29 +0000)
CHANGES
servers/slapd/saslauthz.c

diff --git a/CHANGES b/CHANGES
index 4abd6bba345187b32317cc016228f4f3a5d8b5f1..cbfa7fbcd857077d442304c56064c3a4fd218f4a 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,9 +1,12 @@
 OpenLDAP 2.2 Change Log
 
 OpenLDAP 2.2.24 Engineering
+       Fixed slapd "chldren:" typo (ITS#3560)
        Fixed slapd syncrepl consumer unclean shutdown (ITS#3546)
        Added libldap fast synchronous search result processing
        Fixed libldap fdset re-init for restart (ITS#3524)
+       Documentation
+               Updated README
 
 OpenLDAP 2.2.23 Release
        Updated slapd extensibleMatch empty DN bug fix (ITS#3506)
index 2de7c5cc179e327f1cd0c49585d5c2627d394615..03eb0fb1bfdc487cf6719b539665347086669ff3 100644 (file)
@@ -218,7 +218,7 @@ static int slap_parseURI( Operation *op, struct berval *uri,
                                bv.bv_val += sizeof( "regex:" ) - 1;
                                *scope = LDAP_X_SCOPE_REGEX;
 
-                       } else if ( !strncasecmp( bv.bv_val, "children:", sizeof( "chldren:" ) - 1 ) ) {
+                       } else if ( !strncasecmp( bv.bv_val, "children:", sizeof( "children:" ) - 1 ) ) {
                                bv.bv_val += sizeof( "children:" ) - 1;
                                *scope = LDAP_X_SCOPE_CHILDREN;