From 4d69d511ee4843cbdacde2f73ed378182ead83f6 Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Tue, 25 Feb 2014 13:38:44 +0100 Subject: Fix DEBUG message formatting --- src/providers/ad/ad_dyndns.c | 2 +- src/providers/ipa/ipa_dyndns.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/providers/ad/ad_dyndns.c b/src/providers/ad/ad_dyndns.c index 7e9fd2a69..a99ec5f0d 100644 --- a/src/providers/ad/ad_dyndns.c +++ b/src/providers/ad/ad_dyndns.c @@ -183,7 +183,7 @@ ad_dyndns_update_send(struct ad_options *ctx) if (ctx->dyndns_ctx->last_refresh + 60 > time(NULL) || ctx->dyndns_ctx->timer_in_progress) { - DEBUG(SSSDBG_FUNC_DATA, "Last periodic update ran recently or timer" + DEBUG(SSSDBG_FUNC_DATA, "Last periodic update ran recently or timer " "in progress, not scheduling another update\n"); tevent_req_done(req); tevent_req_post(req, sdap_ctx->be->ev); diff --git a/src/providers/ipa/ipa_dyndns.c b/src/providers/ipa/ipa_dyndns.c index ca11c00c7..83009ff2a 100644 --- a/src/providers/ipa/ipa_dyndns.c +++ b/src/providers/ipa/ipa_dyndns.c @@ -167,7 +167,7 @@ ipa_dyndns_update_send(struct ipa_options *ctx) if (ctx->dyndns_ctx->last_refresh + 60 > time(NULL) || ctx->dyndns_ctx->timer_in_progress) { - DEBUG(SSSDBG_FUNC_DATA, "Last periodic update ran recently or timer" + DEBUG(SSSDBG_FUNC_DATA, "Last periodic update ran recently or timer " "in progress, not scheduling another update\n"); tevent_req_done(req); tevent_req_post(req, sdap_ctx->be->ev); -- cgit