From: Douglas Bagnall Date: Thu, 3 Dec 2020 23:33:27 +0000 (+1300) Subject: dbcheck: fix documentation for err_base64_userParameters X-Git-Tag: samba-4.14.0rc1~476 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fa0350374d3ffdf78e920361315556034730fde8;p=thirdparty%2Fsamba.git dbcheck: fix documentation for err_base64_userParameters Signed-off-by: Douglas Bagnall Reviewed-by: Noel Power --- diff --git a/python/samba/dbchecker.py b/python/samba/dbchecker.py index 69fcc403008..f0a92ddf66a 100644 --- a/python/samba/dbchecker.py +++ b/python/samba/dbchecker.py @@ -977,7 +977,7 @@ newSuperior: %s""" % (str(from_dn), str(to_rdn), str(to_base))) self.report("ERROR: incorrect userParameters value on object %s. If you have another working DC that does not give this warning, please run 'samba-tool drs replicate --full-sync --local %s'" % (obj.dn, self.samdb.get_nc_root(obj.dn))) def err_base64_userParameters(self, obj, attrname, value): - '''handle a wrong userParameters''' + '''handle a userParameters that is wrongly base64 encoded''' self.report("ERROR: wrongly formatted userParameters %s on %s, should not be base64-encoded" % (value, obj.dn)) if not self.confirm_all('Convert userParameters from base64 encoding on %s?' % (obj.dn), 'fix_base64_userparameters'): self.report('Not changing userParameters from base64 encoding on %s' % (obj.dn))