summaryrefslogtreecommitdiffstats
path: root/src/util
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/util
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/util')
-rw-r--r--src/util/domain_info_utils.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/util/domain_info_utils.c b/src/util/domain_info_utils.c
index e0f1120e3..cbfc55b26 100644
--- a/src/util/domain_info_utils.c
+++ b/src/util/domain_info_utils.c
@@ -433,8 +433,9 @@ sss_write_domain_mappings(struct sss_domain_info *domain)
fd = mkstemp(tmp_file);
umask(old_mode);
if (fd < 0) {
- DEBUG(SSSDBG_OP_FAILURE, "creating the temp file [%s] for domain-realm "
- "mappings failed.", tmp_file);
+ DEBUG(SSSDBG_OP_FAILURE,
+ "creating the temp file [%s] for domain-realm mappings "
+ "failed.\n", tmp_file);
ret = EIO;
talloc_zfree(tmp_ctx);
goto done;
@@ -682,8 +683,8 @@ static errno_t sss_write_krb5_localauth_snippet(const char *path)
fd = mkstemp(tmp_file);
umask(old_mode);
if (fd < 0) {
- DEBUG(SSSDBG_OP_FAILURE, "creating the temp file [%s] for domain-realm "
- "mappings failed.", tmp_file);
+ DEBUG(SSSDBG_OP_FAILURE, "creating the temp file [%s] for "
+ "domain-realm mappings failed.\n", tmp_file);
ret = EIO;
talloc_zfree(tmp_ctx);
goto done;