From 41127de6bfc21a99e3787c0dd25a9146e8d24c62 Mon Sep 17 00:00:00 2001 From: Howard Chu Date: Mon, 9 May 2005 05:14:59 +0000 Subject: [PATCH] Fix prev commit, extra objectclass table --- servers/slapd/bconfig.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/servers/slapd/bconfig.c b/servers/slapd/bconfig.c index e259a02e43..b2dc01de7e 100644 --- a/servers/slapd/bconfig.c +++ b/servers/slapd/bconfig.c @@ -3661,10 +3661,10 @@ config_build_entry( Operation *op, SlapReply *rs, CfEntryInfo *parent, if ( extra ) { oc = extra->co_oc; if ( oc->soc_required ) - config_build_attrs( e, oc->soc_required, ad, main->co_table, c ); + config_build_attrs( e, oc->soc_required, ad, extra->co_table, c ); if ( oc->soc_allowed ) - config_build_attrs( e, oc->soc_allowed, ad, main->co_table, c ); + config_build_attrs( e, oc->soc_allowed, ad, extra->co_table, c ); } oc_at = attr_find( e->e_attrs, slap_schema.si_ad_objectClass ); -- 2.39.5