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/util/domain_info_utils.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/util') 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; -- cgit