From 944c05ba4d592f9050cdddc7d56cb5f6632e8d1f Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 30 Jan 2018 12:19:31 +0100 Subject: [PATCH] dbcheck: make sure we always ask for the objectGUID attribute explicitly BUG: https://bugzilla.samba.org/show_bug.cgi?id=13228 Signed-off-by: Stefan Metzmacher Reviewed-by: Ralph Boehme (cherry picked from commit 20598033866ca3d0fdad1edf3cb39e4614eae112) --- python/samba/dbchecker.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/python/samba/dbchecker.py b/python/samba/dbchecker.py index d4c653aab6d..5ae57e29b8d 100644 --- a/python/samba/dbchecker.py +++ b/python/samba/dbchecker.py @@ -1813,8 +1813,7 @@ newSuperior: %s""" % (str(from_dn), str(to_rdn), str(to_base))) attrs.append("systemFlags") if '*' in attrs: attrs.append("replPropertyMetaData") - else: - attrs.append("objectGUID") + attrs.append("objectGUID") try: sd_flags = 0 -- 2.11.4.GIT