summaryrefslogtreecommitdiff
path: root/python/samba/dbchecker.py
diff options
context:
space:
mode:
authorDouglas Bagnall <douglas.bagnall@catalyst.net.nz>2018-10-26 20:18:03 +1300
committerDouglas Bagnall <dbagnall@samba.org>2018-11-01 05:08:10 +0100
commite621472cc89702bd01ad9c88beab0c3986a78d2c (patch)
treef54796e777b3effdc80ff68c74f104c7de37ef69 /python/samba/dbchecker.py
parent9057b1c45e66698dd86bc3fd830e6c7533d59c45 (diff)
downloadsamba-e621472cc89702bd01ad9c88beab0c3986a78d2c.tar.gz
dbcheck: fix function call (right arguments)
Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz> Reviewed-by: Noel Power <noel.power@suse.com>
Diffstat (limited to 'python/samba/dbchecker.py')
-rw-r--r--python/samba/dbchecker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/samba/dbchecker.py b/python/samba/dbchecker.py
index 64c3ffa3f58..ecb4408eda8 100644
--- a/python/samba/dbchecker.py
+++ b/python/samba/dbchecker.py
@@ -2244,7 +2244,7 @@ newSuperior: %s""" % (str(from_dn), str(to_rdn), str(to_base)))
elif len(obj[attrname][0]) % 2 != 0:
# This is a value that isn't even in length
error_count += 1
- self.err_odd_userParameters(obj, attrname, obj[attrname])
+ self.err_odd_userParameters(obj, attrname)
continue
elif obj[attrname][0][1] == b'\x00'[0] and obj[attrname][0][2] == b'\x00'[0] and obj[attrname][0][3] == b'\x00'[0] and obj[attrname][0][4] != b'\x00'[0] and obj[attrname][0][5] == b'\x00'[0]: