Skip to content
Snippets Groups Projects
Commit ddf04f59 authored by Juan Gomez's avatar Juan Gomez
Browse files

Made add_values(), delete_values(), and replace_values() so they can be

used in implementing modrdn v3.
parent 98c2a613
Branches
Tags
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment