diff options
author | Pavel Reichl <preichl@redhat.com> | 2015-01-22 07:22:42 -0500 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2015-01-27 10:58:30 +0100 |
commit | b07a3b729892d2bc2ffa73d93de95e19003cc6c8 (patch) | |
tree | 2a8a61dd3552a80bdd6f6f0f1fc3531f16a8c661 /src/util | |
parent | ab5f9b58ae740868cb09e92379ed41d30b9401ac (diff) | |
download | sssd-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.c | 9 |
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; |