]> git.sur5r.net Git - openldap/commitdiff
Remove slapi_x_be_select()
authorLuke Howard <lukeh@openldap.org>
Mon, 8 Aug 2005 13:26:02 +0000 (13:26 +0000)
committerLuke Howard <lukeh@openldap.org>
Mon, 8 Aug 2005 13:26:02 +0000 (13:26 +0000)
servers/slapd/slapi/proto-slapi.h
servers/slapd/slapi/slapi_utils.c

index cd967ed20263effebc07b6e6c80059886474118e..0d1e8ee6c9636913bdd6a39546dd980e789e710f 100644 (file)
@@ -31,7 +31,6 @@ LDAP_SLAPI_F (Modifications *) slapi_int_ldapmods2modifications LDAP_P(( LDAPMod
 LDAP_SLAPI_F (int) slapi_int_count_controls LDAP_P(( LDAPControl **ctrls ));
 LDAP_SLAPI_F (char **) slapi_get_supported_extended_ops LDAP_P((void));
 LDAP_SLAPI_F (int) slapi_int_access_allowed LDAP_P((Operation *op, Entry *entry, AttributeDescription *desc, struct berval *val, slap_access_t access, AccessControlState *state ));
-LDAP_SLAPI_F (Slapi_Backend *) slapi_x_be_select LDAP_P((const char *dn));
 
 /* slapi_ops.c */
 LDAP_SLAPI_F (int) slapi_int_response LDAP_P(( Slapi_Operation *op, SlapReply *rs ));
index 28a1aaa4d5c9eed20b8088b22b3f20f45f3c39e8..867cc56659c909492b91760dba149c05b8672cfc 100644 (file)
@@ -3479,24 +3479,6 @@ const char *slapi_x_be_get_updatedn( Slapi_Backend *be )
        return be->be_update_ndn.bv_val;
 }
 
-Slapi_Backend *slapi_x_be_select(const char *dn)
-{
-       struct berval bdn;
-       struct berval ndn;
-       Slapi_Backend *be;
-
-       bdn.bv_val = (char *)dn;
-       bdn.bv_len = (dn != NULL) ? strlen(dn) : 0;
-
-       if ( dnNormalize( 0, NULL, NULL, &bdn, &ndn, NULL ) != LDAP_SUCCESS )
-               return NULL;
-
-       be = select_backend( &ndn, 0, 0 );
-       slapi_ch_free_string( &ndn.bv_val );
-
-       return be;
-}
-
 Slapi_Backend *slapi_be_select( const Slapi_DN *sdn )
 {
        Slapi_Backend *be;