From: Kamen Mazdrashki Date: Sat, 25 Sep 2010 21:21:19 +0000 (+0300) Subject: s4-fsmo.py: Fix usage of 'paged_search' module for remote LDB connections X-Git-Tag: samba-4.0.0alpha14~2828 X-Git-Url: http://git.samba.org/?p=samba.git;a=commitdiff_plain;h=11785600be99f3a5b6edeef6f9efe4898abeb3d8;hp=cf5777111616a2f5239b19b5b95974dd47136c48 s4-fsmo.py: Fix usage of 'paged_search' module for remote LDB connections --- diff --git a/source4/torture/drs/python/fsmo.py b/source4/torture/drs/python/fsmo.py index 9b13275e18a..27107c1f6a6 100644 --- a/source4/torture/drs/python/fsmo.py +++ b/source4/torture/drs/python/fsmo.py @@ -166,8 +166,9 @@ def connect_samdb(samdb_url): samdb_url = "tdb://%s" % samdb_url else: samdb_url = "ldap://%s:389" % samdb_url - # user 'paged_search' module when connecting remotely - ldb_options = ["modules:paged_searches"] + # use 'paged_search' module when connecting remotely + if samdb_url.lower().startswith("ldap://"): + ldb_options = ["modules:paged_searches"] return SamDB(url=samdb_url, lp=samba.tests.env_loadparm(),