1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-14 12:59:07 +03:00

s4-drs: the options attribute is optional on NTDSDSA objects

This commit is contained in:
Andrew Tridgell
2010-12-01 14:31:04 +11:00
parent 90215c53df
commit c2fb350218

View File

@ -146,7 +146,7 @@ class cmd_drs_showrepl(Command):
conn = self.samdb.search(base=ntds_dn, expression="(objectClass=nTDSConnection)")
print("%s\\%s" % (site, server))
print("DSA Options: 0x%08x" % int(ntds[0]["options"][0]))
print("DSA Options: 0x%08x" % int(attr_default(ntds[0], "options", 0)))
print("DSA object GUID: %s" % self.samdb.schema_format_value("objectGUID", ntds[0]["objectGUID"][0]))
print("DSA invocationId: %s\n" % self.samdb.schema_format_value("objectGUID", ntds[0]["invocationId"][0]))