summaryrefslogtreecommitdiffstats
path: root/src/responder/autofs
diff options
context:
space:
mode:
authorLukas Slebodnik <lslebodn@redhat.com>2015-02-17 16:40:01 +0100
committerJakub Hrozek <jhrozek@redhat.com>2015-02-18 16:16:50 +0100
commit7bc69afc71c0b8f48bdbf0b5b79d229a47aa49f2 (patch)
treedf7e8f5e6b299def0fa9ba3388da441392c5fc51 /src/responder/autofs
parent46020d2dbb0f092fca7ec2a27e8c822543ab50fd (diff)
downloadsssd-7bc69afc71c0b8f48bdbf0b5b79d229a47aa49f2.tar.gz
sssd-7bc69afc71c0b8f48bdbf0b5b79d229a47aa49f2.tar.xz
sssd-7bc69afc71c0b8f48bdbf0b5b79d229a47aa49f2.zip
Add missing new lines to debug messages
Reviewed-by: Pavel Reichl <preichl@redhat.com>
Diffstat (limited to 'src/responder/autofs')
-rw-r--r--src/responder/autofs/autofssrv_cmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/responder/autofs/autofssrv_cmd.c b/src/responder/autofs/autofssrv_cmd.c
index 4c9f5cf7d..797e638d5 100644
--- a/src/responder/autofs/autofssrv_cmd.c
+++ b/src/responder/autofs/autofssrv_cmd.c
@@ -188,9 +188,9 @@ set_autofs_map(struct autofs_ctx *actx,
hret = hash_enter(actx->maps, &key, &value);
if (hret != EOK) {
DEBUG(SSSDBG_CRIT_FAILURE,
- "Unable to add hash table entry for [%s]", key.str);
+ "Unable to add hash table entry for [%s]\n", key.str);
DEBUG(SSSDBG_MINOR_FAILURE,
- "Hash error [%d][%s]", hret, hash_error_string(hret));
+ "Hash error [%d][%s]\n", hret, hash_error_string(hret));
return EIO;
}
talloc_steal(actx->maps, map);