mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-02 21:19:53 -05:00
Made add_values(), delete_values(), and replace_values() so they can be
used in implementing modrdn v3.
This commit is contained in:
parent
98c2a61313
commit
ddf04f5900
1 changed files with 10 additions and 0 deletions
|
|
@ -127,6 +127,16 @@ int index_add_values LDAP_P(( Backend *be, char *type, struct berval **vals, ID
|
|||
#ifdef HAVE_KERBEROS
|
||||
/* krbv4_ldap_auth LDAP_P(( Backend *be, struct berval *cred, AUTH_DAT *ad )); */
|
||||
#endif
|
||||
|
||||
/*
|
||||
* modify.c
|
||||
* These prototypes are placed here because they are used by modify and
|
||||
* 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 ));
|
||||
|
||||
/*
|
||||
* nextid.c
|
||||
|
|
|
|||
Loading…
Reference in a new issue