From: Juan Gomez Date: Wed, 3 Mar 1999 22:00:16 +0000 (+0000) Subject: Made add_values(), delete_values(), and replace_values() so they can be X-Git-Tag: OPENLDAP_SLAPD_BACK_LDAP~498 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ddf04f59002262f02d562a6a8f0e84c68746e3c1;p=openldap Made add_values(), delete_values(), and replace_values() so they can be used in implementing modrdn v3. --- diff --git a/servers/slapd/back-ldbm/proto-back-ldbm.h b/servers/slapd/back-ldbm/proto-back-ldbm.h index 14c20cd2a1..61fc54074d 100644 --- a/servers/slapd/back-ldbm/proto-back-ldbm.h +++ b/servers/slapd/back-ldbm/proto-back-ldbm.h @@ -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