summaryrefslogtreecommitdiffstats
path: root/src/tools
diff options
context:
space:
mode:
authorPavel Reichl <preichl@redhat.com>2015-01-22 07:22:42 -0500
committerJakub Hrozek <jhrozek@redhat.com>2015-01-27 10:58:30 +0100
commitb07a3b729892d2bc2ffa73d93de95e19003cc6c8 (patch)
tree2a8a61dd3552a80bdd6f6f0f1fc3531f16a8c661 /src/tools
parentab5f9b58ae740868cb09e92379ed41d30b9401ac (diff)
downloadsssd-b07a3b729892d2bc2ffa73d93de95e19003cc6c8.tar.gz
sssd-b07a3b729892d2bc2ffa73d93de95e19003cc6c8.tar.xz
sssd-b07a3b729892d2bc2ffa73d93de95e19003cc6c8.zip
add missing '\n' in debug messages
Also reformat debug strings not to exceed 80 columns long lines. Reviewed-by: Lukáš Slebodník <lslebodn@redhat.com>
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/sss_cache.c9
1 files changed, 5 insertions, 4 deletions
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;
}
}