summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Reichl <preichl@redhat.com>2014-10-21 13:41:17 +0100
committerJakub Hrozek <jhrozek@redhat.com>2014-10-22 12:53:03 +0200
commite087497ad7648e81a1b4d0752e07c2fb6fcfe2b1 (patch)
tree7af962e08cd99be7a8c04c816d2debdac3381ee9
parentf99534c058e9367d2610de89b1af4dcc1ec63035 (diff)
downloadsssd-e087497ad7648e81a1b4d0752e07c2fb6fcfe2b1.tar.gz
sssd-e087497ad7648e81a1b4d0752e07c2fb6fcfe2b1.tar.xz
sssd-e087497ad7648e81a1b4d0752e07c2fb6fcfe2b1.zip
Fix debug messages - trailing '.'
Fix debug messages where '\n' was wrongly followed by '.'. Reviewed-by: Sumit Bose <sbose@redhat.com>
-rw-r--r--src/db/sysdb_views.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/db/sysdb_views.c b/src/db/sysdb_views.c
index 926cd847c..a42aa96ed 100644
--- a/src/db/sysdb_views.c
+++ b/src/db/sysdb_views.c
@@ -721,7 +721,7 @@ static errno_t sysdb_search_override_by_name(TALLOC_CTX *mem_ctx,
goto done;
} else if (override_res->count > 1) {
DEBUG(SSSDBG_CRIT_FAILURE,
- "Found more than one override for name [%s]\n.", name);
+ "Found more than one override for name [%s].\n", name);
ret = EINVAL;
goto done;
}
@@ -878,7 +878,7 @@ static errno_t sysdb_search_override_by_id(TALLOC_CTX *mem_ctx,
goto done;
} else if (override_res->count > 1) {
DEBUG(SSSDBG_CRIT_FAILURE,
- "Found more than one override for id [%lu]\n.", id);
+ "Found more than one override for id [%lu].\n", id);
ret = EINVAL;
goto done;
}