From: Juan Gomez Date: Wed, 3 Mar 1999 21:58:51 +0000 (+0000) Subject: Made add_values(), delete_values(), replace_values() so they can be used X-Git-Tag: OPENLDAP_SLAPD_BACK_LDAP~499 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=98c2a613132d3859b5e782c817eec8e3ab5c4a13;p=openldap Made add_values(), delete_values(), replace_values() so they can be used for implementing modrdn v3. --- diff --git a/servers/slapd/back-ldbm/modify.c b/servers/slapd/back-ldbm/modify.c index 94389a84bf..1b81c6ee38 100644 --- a/servers/slapd/back-ldbm/modify.c +++ b/servers/slapd/back-ldbm/modify.c @@ -11,9 +11,6 @@ #include "back-ldbm.h" #include "proto-back-ldbm.h" -static int add_values(Entry *e, LDAPMod *mod, char *dn); -static int delete_values(Entry *e, LDAPMod *mod, char *dn); -static int replace_values(Entry *e, LDAPMod *mod, char *dn); int ldbm_back_modify( @@ -115,7 +112,7 @@ error_return:; return( -1 ); } -static int +int add_values( Entry *e, LDAPMod *mod, @@ -143,7 +140,7 @@ add_values( return( LDAP_SUCCESS ); } -static int +int delete_values( Entry *e, LDAPMod *mod, @@ -199,7 +196,7 @@ delete_values( return( LDAP_SUCCESS ); } -static int +int replace_values( Entry *e, LDAPMod *mod,