1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-09 08:58:35 +03:00

s4 upgradeprovision, fix a typo preventing the ridset to be correctly identified

This commit is contained in:
Matthieu Patou 2010-08-10 00:54:50 +04:00
parent a22989a54a
commit 7b41969603

View File

@ -543,7 +543,7 @@ def add_missing_object(ref_samdb, samdb, dn, names, basedn, hash, index):
try:
if str(reference[0].get("cn")) == "RID Set":
for klass in reference[0].get("objectClass"):
if str(klass).lower == "ridset":
if str(klass).lower() == "ridset":
skip = True
finally:
if delta.get("objectSid"):