summaryrefslogtreecommitdiff
path: root/source4/scripting/bin/fullschema
diff options
context:
space:
mode:
Diffstat (limited to 'source4/scripting/bin/fullschema')
-rw-r--r--source4/scripting/bin/fullschema6
1 files changed, 4 insertions, 2 deletions
diff --git a/source4/scripting/bin/fullschema b/source4/scripting/bin/fullschema
index d3bf398e65..41c45f30c8 100644
--- a/source4/scripting/bin/fullschema
+++ b/source4/scripting/bin/fullschema
@@ -157,7 +157,8 @@ rootDse = res[0]
if opts.dump_attributes:
res = ldb.search(expression="objectClass=attributeSchema",
- base=rootDse["schemaNamingContext"][0], scope=SCOPE_SUBTREE,attrs=attrib_attrs)
+ base=rootDse["schemaNamingContext"][0], scope=SCOPE_SUBTREE,attrs=attrib_attrs,
+ controls=["server_sort:1:0:cn"])
for msg in res:
o = Objectclass(ldb, msg["ldapDisplayName"])
@@ -167,7 +168,8 @@ if opts.dump_attributes:
if opts.dump_classes:
res = ldb.search(expression="objectClass=classSchema",
- base=rootDse["schemaNamingContext"][0], scope=SCOPE_SUBTREE,attrs=class_attrs)
+ base=rootDse["schemaNamingContext"][0], scope=SCOPE_SUBTREE,attrs=class_attrs,
+ controls=["server_sort:1:0:cn"])
for msg in res:
o = Objectclass(ldb, msg["ldapDisplayName"])