diff options
author | Simo Sorce <simo@redhat.com> | 2013-01-15 22:19:36 -0500 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-02-10 22:08:47 +0100 |
commit | 4f118e3e6a25762f40a43e6dbefb09f44adbef32 (patch) | |
tree | 35e3eed19b3b462cc94f6aee0050562a7d37e6a8 /src/providers/ipa | |
parent | bfba0655bc129ebcffc20b1204e0f87549e0a74e (diff) | |
download | sssd-4f118e3e6a25762f40a43e6dbefb09f44adbef32.tar.gz sssd-4f118e3e6a25762f40a43e6dbefb09f44adbef32.tar.xz sssd-4f118e3e6a25762f40a43e6dbefb09f44adbef32.zip |
Introduce IS_SUBDOMAIN() macro
Fixes https://fedorahosted.org/sssd/ticket/1766
Diffstat (limited to 'src/providers/ipa')
-rw-r--r-- | src/providers/ipa/ipa_subdomains.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/providers/ipa/ipa_subdomains.c b/src/providers/ipa/ipa_subdomains.c index deee153b8..28811ae7b 100644 --- a/src/providers/ipa/ipa_subdomains.c +++ b/src/providers/ipa/ipa_subdomains.c @@ -301,7 +301,7 @@ ipa_subdomains_write_mappings(struct sss_domain_info *domain) } for (dom = get_next_domain(domain, true); - dom && dom->parent; /* if we get back to a parent, stop */ + dom && IS_SUBDOMAIN(dom); /* if we get back to a parent, stop */ dom = get_next_domain(dom, false)) { ret = fprintf(fstream, ".%s = %s\n%s = %s\n", dom->name, dom->realm, dom->name, dom->realm); @@ -379,7 +379,7 @@ static errno_t ipa_subdomains_refresh(struct ipa_subdomains_ctx *ctx, /* check existing subdomains */ for (dom = get_next_domain(domain, true); - dom && dom->parent; + dom && IS_SUBDOMAIN(dom); /* if we get back to a parent, stop */ dom = get_next_domain(dom, false)) { for (c = 0; c < count; c++) { if (handled[c]) { |