We were printing some garbage value in this message. Patch attached.
Thanks Michal
>From e69558e2feef2f4f38d67d954b5692394701357d Mon Sep 17 00:00:00 2001 From: Michal Zidek <[email protected]> Date: Thu, 29 Nov 2012 18:42:01 +0100 Subject: [PATCH] Missing parameter in DEBUG message. --- src/providers/data_provider_fo.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/providers/data_provider_fo.c b/src/providers/data_provider_fo.c index c66912d..a1b96be 100644 --- a/src/providers/data_provider_fo.c +++ b/src/providers/data_provider_fo.c @@ -722,7 +722,8 @@ void be_fo_set_port_status(struct be_ctx *ctx, if (!fo_svc_has_server(be_svc->fo_service, server)) { DEBUG(SSSDBG_OP_FAILURE, - ("The server %p is not valid anymore, cannot set its status\n")); + ("The server %p is not valid anymore, cannot set its status\n", + server)); return; } -- 1.7.11.2
_______________________________________________ sssd-devel mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/sssd-devel
