From 534c1ca00ef1d658c4cefe72fcc3acb101635ae9 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 12 Jul 2011 11:12:21 +1000 Subject: dbcheck: fixed ldap check with no database specified Pair-Programmed-With: Andrew Bartlett Pair-Programmed-With: Amitay Isaacs --- source4/scripting/python/samba/netcmd/dbcheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source4/scripting/python/samba/netcmd/dbcheck.py b/source4/scripting/python/samba/netcmd/dbcheck.py index 823ec7a101..6c47f85346 100644 --- a/source4/scripting/python/samba/netcmd/dbcheck.py +++ b/source4/scripting/python/samba/netcmd/dbcheck.py @@ -88,7 +88,7 @@ class cmd_dbcheck(Command): search_scope = scope_map[scope] controls = ['show_deleted:1'] - if H.startswith('ldap'): + if over_ldap: controls.append('paged_results:1:1000') if cross_ncs: controls.append("search_options:1:2") -- cgit