diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-07-13 13:05:19 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-07-13 12:51:05 +0200 |
commit | 2087eb1602d647a7b14523820834231f50dea79d (patch) | |
tree | 660826d9d52195800cf44f93f2429c21e5778a2b /source4/scripting/bin | |
parent | c60a48948a75a6d300e31c2a2629daa4a48cbeb1 (diff) | |
download | samba-2087eb1602d647a7b14523820834231f50dea79d.tar.gz samba-2087eb1602d647a7b14523820834231f50dea79d.tar.bz2 samba-2087eb1602d647a7b14523820834231f50dea79d.zip |
ldb: use base searches for @ special DNs
subtree searches on these DNs don't work any more
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/scripting/bin')
-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 d2a645a637..54f3cf1507 100755 --- a/source4/scripting/bin/upgradeprovision +++ b/source4/scripting/bin/upgradeprovision @@ -1349,7 +1349,7 @@ def rebuild_sd(samdb, names): def removeProvisionUSN(samdb): attrs = [samba.provision.LAST_PROVISION_USN_ATTRIBUTE, "dn"] entry = samdb.search(expression="dn=@PROVISION", base = "", - scope=SCOPE_SUBTREE, + scope=SCOPE_BASE, attrs=attrs) empty = Message() empty.dn = entry[0].dn |