diff options
author | Andrew Tridgell <tridge@samba.org> | 2009-12-09 15:18:37 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2009-12-09 18:18:26 +1100 |
commit | 0fca76e5775e46dd69153eee93e92b1937df29b5 (patch) | |
tree | f0e864a26d38b2fdedb69f52a568c642abed9b1b /source4/dsdb/common | |
parent | 732c701c52932419e602adfe726dee89d89549d3 (diff) | |
download | samba-0fca76e5775e46dd69153eee93e92b1937df29b5.tar.gz samba-0fca76e5775e46dd69153eee93e92b1937df29b5.tar.bz2 samba-0fca76e5775e46dd69153eee93e92b1937df29b5.zip |
s4-dsdb: added dsdb_functional_level() helper function
Diffstat (limited to 'source4/dsdb/common')
-rw-r--r-- | source4/dsdb/common/util.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/source4/dsdb/common/util.c b/source4/dsdb/common/util.c index d9e03cec3e..512230f63c 100644 --- a/source4/dsdb/common/util.c +++ b/source4/dsdb/common/util.c @@ -2705,3 +2705,19 @@ const char *samdb_cn_to_lDAPDisplayName(TALLOC_CTX *mem_ctx, const char *cn) return ret; } + +/* + return domain functional level + returns DS_DOMAIN_FUNCTION_* + */ +int dsdb_functional_level(struct ldb_context *ldb) +{ + int *domainFunctionality = + talloc_get_type(ldb_get_opaque(ldb, "domainFunctionality"), int); + if (!domainFunctionality) { + DEBUG(0,(__location__ ": WARNING: domainFunctionality not setup\n")); + return DS_DOMAIN_FUNCTION_2000; + } + return *domainFunctionality; +} + |