From de1131abe5ba7aaeb59f81fc3a9cd2a71c0b52dd Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Fri, 11 Dec 2015 12:12:03 +0100 Subject: DEBUG: Add missing new lines Reviewed-by: Petr Cech --- src/providers/ad/ad_gpo.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/providers/ad') diff --git a/src/providers/ad/ad_gpo.c b/src/providers/ad/ad_gpo.c index bdf2776db..cca5e5861 100644 --- a/src/providers/ad/ad_gpo.c +++ b/src/providers/ad/ad_gpo.c @@ -1845,7 +1845,7 @@ ad_gpo_target_dn_retrieval_done(struct tevent_req *subreq) if (!(uac & UAC_WORKSTATION_TRUST_ACCOUNT || uac & UAC_SERVER_TRUST_ACCOUNT)) { DEBUG(SSSDBG_OP_FAILURE, - "Invalid userAccountControl (%x) value for machine account.", + "Invalid userAccountControl (%x) value for machine account.\n", uac); ret = EINVAL; goto done; @@ -3598,7 +3598,7 @@ ad_gpo_get_gpo_attrs_done(struct tevent_req *subreq) const char *gpo_dn = state->candidate_gpos[state->gpo_index]->gpo_dn; DEBUG(SSSDBG_OP_FAILURE, - "No attrs found for GPO [%s].", gpo_dn); + "No attrs found for GPO [%s].\n", gpo_dn); ret = ENOENT; goto done; } @@ -4390,7 +4390,7 @@ ad_gpo_get_sd_referral_search_done(struct tevent_req *subreq) * we will do it later if it ever becomes necessary. */ DEBUG(SSSDBG_OP_FAILURE, - "No attrs found for referred GPO [%s].", state->gpo_dn); + "No attrs found for referred GPO [%s].\n", state->gpo_dn); ret = ENOENT; goto done; -- cgit