]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-ldap/init.c
ITS#5860 - more for entry cache counts
[openldap] / servers / slapd / back-ldap / init.c
index 44012c81b762541974091a6a5b73b537b3f609fc..6c9979bd508e2781e2b8a763ca2847d95332628b 100644 (file)
@@ -2,7 +2,7 @@
 /* $OpenLDAP$ */
 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
  *
- * Copyright 2003-2008 The OpenLDAP Foundation.
+ * Copyright 2003-2009 The OpenLDAP Foundation.
  * Portions Copyright 1999-2003 Howard Chu.
  * Portions Copyright 2000-2003 Pierangelo Masarati.
  * All rights reserved.
 
 static const ldap_extra_t ldap_extra = {
        ldap_back_proxy_authz_ctrl,
-       ldap_back_controls_free
+       ldap_back_controls_free,
+       slap_idassert_authzfrom_parse_cf,
+       slap_idassert_parse_cf,
+       slap_retry_info_destroy,
+       slap_retry_info_parse,
+       slap_retry_info_unparse
 };
 
 int
@@ -57,7 +62,10 @@ ldap_back_initialize( BackendInfo *bi )
                 * and the entryTtl attribute */
                SLAP_BFLAG_DYNAMIC |
 #endif /* LDAP_DYNAMIC_OBJECTS */
-               0;
+
+               /* back-ldap recognizes RFC4525 increment;
+                * let the remote server complain, if needed (ITS#5912) */
+               SLAP_BFLAG_INCREMENT;
 
        bi->bi_open = ldap_back_open;
        bi->bi_config = 0;
@@ -228,14 +236,10 @@ ldap_back_db_open( BackendDB *be, ConfigReply *cr )
        if ( rc != 0 ) {
                /* ignore by now */
                rc = 0;
-#if 0
-               goto fail;
-#endif
        }
 
        li->li_flags |= LDAP_BACK_F_ISOPEN;
 
-fail:;
        return rc;
 }