>From c499864dca2b060a4c859a96772c854993fa67b7 Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Sat, 13 Jul 2013 15:40:29 +0200 Subject: [PATCH 02/20] Fix formating of variables with type: unsigned long --- src/providers/proxy/proxy_auth.c | 2 +- src/responder/common/responder_dp.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/providers/proxy/proxy_auth.c b/src/providers/proxy/proxy_auth.c index 99b1a76c705975da91594eabd70e6a1a94eb6c18..61fec63aa416315546309035cfbe603d6a527329 100644 --- a/src/providers/proxy/proxy_auth.c +++ b/src/providers/proxy/proxy_auth.c @@ -167,7 +167,7 @@ static struct tevent_req *proxy_child_send(TALLOC_CTX *mem_ctx, value.type = HASH_VALUE_PTR; value.ptr = req; - DEBUG(8, ("Queueing request [%d]\n", key.ul)); + DEBUG(SSSDBG_TRACE_INTERNAL, ("Queueing request [%lu]\n", key.ul)); hret = hash_enter(auth_ctx->request_table, &key, &value); if (hret != HASH_SUCCESS) { diff --git a/src/responder/common/responder_dp.c b/src/responder/common/responder_dp.c index c5e8fc8baecc02a789eba53937d3760c6cb8dde7..e73e1e6b6233ac234bbcb991519fc6842634dde4 100644 --- a/src/responder/common/responder_dp.c +++ b/src/responder/common/responder_dp.c @@ -116,7 +116,7 @@ static int sss_dp_req_destructor(void *ptr) if (hret != HASH_SUCCESS) { /* This should never happen */ DEBUG(SSSDBG_TRACE_INTERNAL, - ("BUG: Could not clear [%d:%d:%s] from request queue: [%s]\n", + ("BUG: Could not clear [%d:%lu:%s] from request queue: [%s]\n", sdp_req->key->type, sdp_req->key->ul, sdp_req->key->str, hash_error_string(hret))); return -1; -- 1.8.3.1