From b07a3b729892d2bc2ffa73d93de95e19003cc6c8 Mon Sep 17 00:00:00 2001 From: Pavel Reichl Date: Thu, 22 Jan 2015 07:22:42 -0500 Subject: add missing '\n' in debug messages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Also reformat debug strings not to exceed 80 columns long lines. Reviewed-by: Lukáš Slebodník --- src/tools/sss_cache.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/tools') diff --git a/src/tools/sss_cache.c b/src/tools/sss_cache.c index e6faf2d74..c9bf24914 100644 --- a/src/tools/sss_cache.c +++ b/src/tools/sss_cache.c @@ -426,15 +426,16 @@ static bool invalidate_entries(TALLOC_CTX *ctx, c_name = ldb_msg_find_attr_as_string(msgs[i], SYSDB_NAME, NULL); if (c_name == NULL) { DEBUG(SSSDBG_MINOR_FAILURE, - "Something bad happened, can't find attribute %s", SYSDB_NAME); - ERROR("Couldn't invalidate %1$s", type_string); + "Something bad happened, can't find attribute %s\n", + SYSDB_NAME); + ERROR("Couldn't invalidate %1$s\n", type_string); iret = false; } else { ret = invalidate_entry(ctx, dinfo, c_name, entry_type); if (ret != EOK) { DEBUG(SSSDBG_MINOR_FAILURE, - "Couldn't invalidate %s %s", type_string, c_name); - ERROR("Couldn't invalidate %1$s %2$s", type_string, c_name); + "Couldn't invalidate %s %s\n", type_string, c_name); + ERROR("Couldn't invalidate %1$s %2$s\n", type_string, c_name); iret = false; } } -- cgit