export glueing code

This commit is contained in:
Jong Hyuk Choi 2003-07-08 20:07:07 +00:00
parent db097047af
commit b231c33efa
3 changed files with 11 additions and 5 deletions

View file

@ -1157,6 +1157,9 @@ LDAP_SLAPD_F (void) syncrepl_updateCookie LDAP_P((
syncinfo_t *, LDAP *, Operation *, struct berval *,
struct berval * ));
LDAP_SLAPD_F (char **) str2clist LDAP_P(( char ***, char *, const char * ));
LDAP_SLAPD_F (void) syncrepl_add_glue LDAP_P(( syncinfo_t *, LDAP *, Operation*, Entry*,
Modifications*, int, struct berval*, struct berval* ));
#endif
LDAP_END_DECL

View file

@ -40,10 +40,6 @@
static void
syncrepl_del_nonpresent( syncinfo_t *, LDAP *, Operation * );
static void
syncrepl_add_glue( syncinfo_t *, LDAP *, Operation*, Entry*, Modifications*,
int, struct berval*, struct berval* );
static int
slap_mods_check_syncrepl( syncinfo_t *, Operation *, Modifications **,
const char **, char *, size_t, void *ctx );
@ -1115,7 +1111,7 @@ syncrepl_del_nonpresent(
}
static void
void
syncrepl_add_glue(
syncinfo_t *si,
LDAP *ld,

View file

@ -268,4 +268,11 @@ char** str2clist( char ***out, char *in, const char *brkstr )
{
return NULL;
}
void syncrepl_add_glue( syncinfo_t *si, LDAP *ld, Operation *op, Entry *e,
Modifications *modlist, int syncstate, struct berval* syncUUID,
struct berval* syncCookie )
{
return;
}
#endif