summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSumit Bose <sbose@redhat.com>2014-11-07 21:36:12 +0100
committerJakub Hrozek <jhrozek@redhat.com>2014-11-20 10:53:01 +0100
commitb114bcc370c8d78b5e9f43963cfa91213901c3be (patch)
tree6f3c59e1e8e184508aec3695dccb7d68306f5ef9
parentacebf94a16c91b17c7c082538ab3083ee26aa992 (diff)
downloadsssd-b114bcc370c8d78b5e9f43963cfa91213901c3be.tar.gz
sssd-b114bcc370c8d78b5e9f43963cfa91213901c3be.tar.xz
sssd-b114bcc370c8d78b5e9f43963cfa91213901c3be.zip
Enable views for all domains
Currently views and overrides were only available for sub-domains, this patch enables the lookup for the configured domains as well. Related to https://fedorahosted.org/sssd/ticket/2481 Reviewed-by: Jakub Hrozek <jhrozek@redhat.com>
-rw-r--r--src/util/util.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/util/util.h b/src/util/util.h
index ffc8a87ea..7c335b9a2 100644
--- a/src/util/util.h
+++ b/src/util/util.h
@@ -574,8 +574,7 @@ errno_t sssd_domain_init(TALLOC_CTX *mem_ctx,
#define IS_SUBDOMAIN(dom) ((dom)->parent != NULL)
-/* Currently views are only supported for subdomains */
-#define DOM_HAS_VIEWS(dom) ((dom)->has_views && IS_SUBDOMAIN(dom))
+#define DOM_HAS_VIEWS(dom) ((dom)->has_views)
errno_t sss_write_domain_mappings(struct sss_domain_info *domain);