mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
Made add_values(), delete_values(), replace_values() so they can be used
for implementing modrdn v3.
This commit is contained in:
parent
625efd9466
commit
98c2a61313
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user