From e621472cc89702bd01ad9c88beab0c3986a78d2c Mon Sep 17 00:00:00 2001 From: Douglas Bagnall Date: Fri, 26 Oct 2018 20:18:03 +1300 Subject: [PATCH] dbcheck: fix function call (right arguments) Signed-off-by: Douglas Bagnall Reviewed-by: Noel Power --- python/samba/dbchecker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]: -- 2.47.2