diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2013-04-29 14:13:41 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-04-29 14:13:41 +0200 |
commit | 313119612112b7ba97d9467277e8981d765b1eba (patch) | |
tree | 607580213a0bf0cc00164c2ae75f4ecff19c8804 | |
parent | b1829e54acbc8a010aca7f14b9ffa9625f8c102c (diff) | |
download | sssd-313119612112b7ba97d9467277e8981d765b1eba.tar.gz sssd-313119612112b7ba97d9467277e8981d765b1eba.tar.xz sssd-313119612112b7ba97d9467277e8981d765b1eba.zip |
selinux: if no domain matches, make the debug message louder
-rw-r--r-- | src/providers/ipa/ipa_selinux.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/providers/ipa/ipa_selinux.c b/src/providers/ipa/ipa_selinux.c index d82485e75..da6853909 100644 --- a/src/providers/ipa/ipa_selinux.c +++ b/src/providers/ipa/ipa_selinux.c @@ -113,9 +113,9 @@ void ipa_selinux_handler(struct be_req *be_req) if (strcasecmp(pd->domain, be_ctx->domain->name) != 0) { subdom_be_ctx = ipa_get_subdomains_be_ctx(be_ctx); if (subdom_be_ctx == NULL) { - DEBUG(SSSDBG_CONF_SETTINGS, ("Subdomains are not configured, " \ - "cannot lookup domain [%s].\n", - pd->domain)); + DEBUG(SSSDBG_OP_FAILURE, ("Subdomains are not configured, " \ + "cannot lookup domain [%s].\n", + pd->domain)); goto fail; } else { user_domain = find_subdomain_by_name(subdom_be_ctx->domain, |