mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-12 15:23:11 -05:00
Renamed
int add_values LDAP_P(( Entry *e, LDAPMod *mod, char *dn )); int delete_values LDAP_P(( Entry *e, LDAPMod *mod, char *dn )); int replace_values LDAP_P(( Entry *e, LDAPMod *mod, char *dn )); to int bdb2i_add_values LDAP_P(( Entry *e, LDAPMod *mod, char *dn )); int bdb2i_delete_values LDAP_P(( Entry *e, LDAPMod *mod, char *dn )); int bdb2i_replace_values LDAP_P(( Entry *e, LDAPMod *mod, char *dn )); So that ldbm and db2 backend can coexist
This commit is contained in:
parent
3b5a5b792c
commit
b41a79fe16
1 changed files with 3 additions and 3 deletions
|
|
@ -137,9 +137,9 @@ int bdb2i_index_add_values LDAP_P(( BackendDB *be, char *type, struct berval **v
|
|||
* modify rdn which are implemented in different files.
|
||||
*/
|
||||
|
||||
int add_values LDAP_P(( Entry *e, LDAPMod *mod, char *dn ));
|
||||
int delete_values LDAP_P(( Entry *e, LDAPMod *mod, char *dn ));
|
||||
int replace_values LDAP_P(( Entry *e, LDAPMod *mod, char *dn ));
|
||||
int bdb2i_add_values LDAP_P(( Entry *e, LDAPMod *mod, char *dn ));
|
||||
int bdb2i_delete_values LDAP_P(( Entry *e, LDAPMod *mod, char *dn ));
|
||||
int bdb2i_replace_values LDAP_P(( Entry *e, LDAPMod *mod, char *dn ));
|
||||
|
||||
/*
|
||||
* nextid.c
|
||||
|
|
|
|||
Loading…
Reference in a new issue