summaryrefslogtreecommitdiffstats
path: root/src/db/sysdb_ranges.c
diff options
context:
space:
mode:
authorSumit Bose <sbose@redhat.com>2012-10-15 10:31:59 +0200
committerSimo Sorce <simo@redhat.com>2012-10-26 12:10:23 -0400
commit1a2129278b37067b325c7eeb65875d7775617016 (patch)
treec8ea1811c1d9e1ea61c6677bcfadbcd0f0decb29 /src/db/sysdb_ranges.c
parent00e7269ca8829f82ce32f319f4e67f9910f1c42f (diff)
downloadsssd-1a2129278b37067b325c7eeb65875d7775617016.tar.gz
sssd-1a2129278b37067b325c7eeb65875d7775617016.tar.xz
sssd-1a2129278b37067b325c7eeb65875d7775617016.zip
sysdb: look for ranges in the parent tree
Make sure the right sub-tree in the cache is used to search for ranges. Sub-domain trees do not have range objects only the tree of the parent domain.
Diffstat (limited to 'src/db/sysdb_ranges.c')
-rw-r--r--src/db/sysdb_ranges.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/db/sysdb_ranges.c b/src/db/sysdb_ranges.c
index f100f5b87..adbabf7ba 100644
--- a/src/db/sysdb_ranges.c
+++ b/src/db/sysdb_ranges.c
@@ -64,8 +64,11 @@ errno_t sysdb_get_ranges(TALLOC_CTX *mem_ctx, struct sysdb_ctx *sysdb,
goto done;
}
+ /* Ranges are stored in the tree of the parent domain */
basedn = ldb_dn_new_fmt(tmp_ctx, sysdb->ldb, SYSDB_TMPL_RANGE_BASE,
- sysdb->domain->name);
+ sysdb->domain->parent != NULL ?
+ sysdb->domain->parent->name :
+ sysdb->domain->name);
if (basedn == NULL) {
ret = EIO;
goto done;