From c683b8d730f4ec838244147d70a0275d53459aa5 Mon Sep 17 00:00:00 2001 From: Pavel Reichl Date: Sat, 27 Sep 2014 12:06:44 +0100 Subject: Fix debug messages - trailing '.' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix debug messages where '\n' was wrongly followed by '.'. Reviewed-by: Lukáš Slebodník --- src/providers/ldap/sdap_async_nested_groups.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/providers/ldap/sdap_async_nested_groups.c') diff --git a/src/providers/ldap/sdap_async_nested_groups.c b/src/providers/ldap/sdap_async_nested_groups.c index ad5667e59..1eba35ae8 100644 --- a/src/providers/ldap/sdap_async_nested_groups.c +++ b/src/providers/ldap/sdap_async_nested_groups.c @@ -1411,7 +1411,7 @@ static void sdap_nested_group_single_done(struct tevent_req *subreq) talloc_zfree(subreq); if (ret != EOK) { DEBUG(SSSDBG_CRIT_FAILURE, "Error processing nested groups " - "[%d]: %s\n.", ret, strerror(ret)); + "[%d]: %s.\n", ret, strerror(ret)); tevent_req_error(req, ret); return; } -- cgit