diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-10-21 12:47:57 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-10-21 19:03:25 +1100 |
commit | 47591ea5ec03916393d22484e3b551da033260ea (patch) | |
tree | 9beda732635d7fe5e630393a1e9c6d7e3c43e804 /source4/dsdb/wscript_build | |
parent | cffbccb5cb0046bc9713de5d5a89d7f8236888f4 (diff) | |
download | samba-47591ea5ec03916393d22484e3b551da033260ea.tar.gz |
s4-dsdb: moved a bunch of fuctions from schema/schema_info_attr.c to samdb/ldb_modules/schema_util.c
these functions operate on ldb_modules, so they should be in the
ldb_modules directory. They also should return ldb errors codes, not
WERROR codes, as otherwise the error can be hidden from the ldap
caller
This re-arrangement fixes a dependency loop in the schema/samdb code.
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Pair-Programmed-With: Kamen Mazdrashki <kamenim@samba.org>
Diffstat (limited to 'source4/dsdb/wscript_build')
-rw-r--r-- | source4/dsdb/wscript_build | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source4/dsdb/wscript_build b/source4/dsdb/wscript_build index 6955eb49d36..fb9e084b546 100644 --- a/source4/dsdb/wscript_build +++ b/source4/dsdb/wscript_build @@ -22,8 +22,7 @@ bld.SAMBA_LIBRARY('SAMDB_COMMON', bld.SAMBA_SUBSYSTEM('SAMDB_SCHEMA', source='schema/schema_init.c schema/schema_set.c schema/schema_query.c schema/schema_syntax.c schema/schema_description.c schema/schema_convert_to_ol.c schema/schema_inferiors.c schema/schema_prefixmap.c schema/schema_info_attr.c schema/schema_filtered.c schema/dsdb_dn.c', autoproto='schema/proto.h', - # FIXME: Why does this use DSDB_MODULE_HELPERS? - deps='SAMDB_COMMON NDR_DRSUAPI NDR_DRSBLOBS LDBSAMBA tevent DSDB_MODULE_HELPERS' + deps='SAMDB_COMMON NDR_DRSUAPI NDR_DRSBLOBS LDBSAMBA tevent' ) |