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

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

for implementing modrdn v3.
parent 625efd94
No related branches found
No related tags found
No related merge requests found
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment