From e66b32e80303ae40afb282f6e52962303a23e5f5 Mon Sep 17 00:00:00 2001 From: Pavel Reichl Date: Tue, 21 Oct 2014 13:41:17 +0100 Subject: [PATCH 16/22] Fix debug messages - trailing '.' Fix debug messages where '\n' was wrongly followed by '.'. Reviewed-by: Sumit Bose --- src/db/sysdb_views.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/db/sysdb_views.c b/src/db/sysdb_views.c index 926cd847c8dd8ddc33c0b517642a11bbe78059b5..a42aa96ed3e0cd7c877ff0c42887ef3f03ef5e0e 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; } -- 1.9.3