Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/tools/common/sss_tools.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ errno_t sss_tool_confdb_init(TALLOC_CTX *mem_ctx, struct confdb_ctx **_confdb)
ret = stat(path, &statbuf);
if (ret != 0) {
ret = errno;
DEBUG(SSSDBG_FATAL_FAILURE,
DEBUG(SSSDBG_OP_FAILURE,
"Can't access '%s', probably SSSD isn't configured\n", path);
return ret;
}
Expand Down
3 changes: 2 additions & 1 deletion src/tools/sss_cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,8 @@ static errno_t init_domains(struct cache_tool_ctx *ctx,

ret = sss_tool_confdb_init(ctx, &ctx->confdb);
if (ret != EOK) {
ERROR("Can't find configuration db, was SSSD configured and run?\n");
DEBUG(SSSDBG_OP_FAILURE,
"Can't find configuration db, was SSSD configured and run?\n");
return ERR_NO_DOMAIN_ENABLED;
}

Expand Down
Loading