diff options
author | Stefan Metzmacher <metze@samba.org> | 2013-01-24 13:07:32 +0100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2013-01-27 20:14:20 +1100 |
commit | cd5cb843b4d698ed2fedf635a020ff978ae40558 (patch) | |
tree | bff76500524bc7028aad7654f013ccdc73a01ec0 | |
parent | 2413962d53c7923a453fc7579b24b90bc23173df (diff) | |
download | samba-cd5cb843b4d698ed2fedf635a020ff978ae40558.tar.gz samba-cd5cb843b4d698ed2fedf635a020ff978ae40558.tar.xz samba-cd5cb843b4d698ed2fedf635a020ff978ae40558.zip |
tests/sec_descriptor: the default owner behavior depends on domainControllerFunctionality (bug #9481)
Not on the domainFunctionality.
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
-rwxr-xr-x | source4/dsdb/tests/python/sec_descriptor.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/dsdb/tests/python/sec_descriptor.py b/source4/dsdb/tests/python/sec_descriptor.py index 78cd052a939..10d37187a56 100755 --- a/source4/dsdb/tests/python/sec_descriptor.py +++ b/source4/dsdb/tests/python/sec_descriptor.py @@ -313,10 +313,10 @@ class OwnerGroupDescriptorTests(DescriptorTests): "175" : "O:DAG:DA", }, } - # Discover 'msDS-Behavior-Version' - res = self.ldb_admin.search(base=self.base_dn, expression="distinguishedName=%s" % self.base_dn, \ - attrs=['msDS-Behavior-Version']) - res = int(res[0]['msDS-Behavior-Version'][0]) + # Discover 'domainControllerFunctionality' + res = self.ldb_admin.search(base="", scope=SCOPE_BASE, + attrs=['domainControllerFunctionality']) + res = int(res[0]['domainControllerFunctionality'][0]) if res < DS_DOMAIN_FUNCTION_2008: self.DS_BEHAVIOR = "ds_behavior_win2003" else: |