reworked slapd_mods_free into mimic to avoid extra obj linking into tools

This commit is contained in:
Pierangelo Masarati 2001-07-14 17:48:12 +00:00
parent 5fdba27288
commit e864abf685
2 changed files with 6 additions and 1 deletions

View File

@ -47,7 +47,7 @@ SLAPD_OBJS = ../config.o ../ch_malloc.o ../backend.o ../charray.o \
../acl.o ../phonetic.o ../attr.o ../value.o ../entry.o \
../dn.o ../filter.o ../str2filter.o ../ava.o ../init.o \
../controls.o ../kerberos.o ../passwd.o ../index.o \
../extended.o ../starttls.o ../sets.o ../mra.o ../mods.o
../extended.o ../starttls.o ../sets.o ../mra.o
SLAPOBJS = $(SLAPD_OBJS) slapcommon.o mimic.o

View File

@ -191,3 +191,8 @@ void replog( Backend *be, Operation *op, char *dn, void *change)
assert(0);
}
void slap_mods_free( Modifications *ml )
{
assert(0);
}