diff options
author | Matthieu Patou <mat@matws.net> | 2010-08-10 00:54:50 +0400 |
---|---|---|
committer | Matthieu Patou <mat@matws.net> | 2010-08-10 00:57:20 +0400 |
commit | 7b419696036bbcf7e37792721899bc65b4a2f0f8 (patch) | |
tree | 5c5eb71d64b325c25f3ac8719e9adc16eb9a3eff /source4 | |
parent | a22989a54afd411a8d038110c7df2c545b4121b7 (diff) | |
download | samba-7b419696036bbcf7e37792721899bc65b4a2f0f8.tar.gz samba-7b419696036bbcf7e37792721899bc65b4a2f0f8.tar.xz samba-7b419696036bbcf7e37792721899bc65b4a2f0f8.zip |
s4 upgradeprovision, fix a typo preventing the ridset to be correctly identified
Diffstat (limited to 'source4')
-rwxr-xr-x | source4/scripting/bin/upgradeprovision | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/bin/upgradeprovision b/source4/scripting/bin/upgradeprovision index deb50e36fbb..23c511f0812 100755 --- a/source4/scripting/bin/upgradeprovision +++ b/source4/scripting/bin/upgradeprovision @@ -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"): |