]> git.sur5r.net Git - openldap/commitdiff
Made add_values(), delete_values(), replace_values() so they can be used
authorJuan Gomez <gomez@openldap.org>
Wed, 3 Mar 1999 21:58:51 +0000 (21:58 +0000)
committerJuan Gomez <gomez@openldap.org>
Wed, 3 Mar 1999 21:58:51 +0000 (21:58 +0000)
for implementing modrdn v3.

servers/slapd/back-ldbm/modify.c

index 94389a84bf5608f2a3260f057dcdbd4b291f84c3..1b81c6ee389f4b791dc350268315cd7faa84df08 100644 (file)
@@ -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,