From: Alan T. DeKok Date: Mon, 4 May 2020 20:01:10 +0000 (-0400) Subject: fix format string X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb921f4e1c731c8d424164276ef23b61e3477a2a;p=thirdparty%2Ffreeradius-server.git fix format string --- diff --git a/src/modules/proto_arp/proto_arp_process.c b/src/modules/proto_arp/proto_arp_process.c index f8f65a00224..c641d8c58cd 100644 --- a/src/modules/proto_arp/proto_arp_process.c +++ b/src/modules/proto_arp/proto_arp_process.c @@ -199,7 +199,7 @@ static rlm_rcode_t mod_process(UNUSED void *instance, UNUSED void *thread, REQUE } if (request->parent && RDEBUG_ENABLED) { - RDEBUG("Sending %d", request->reply->code, request->reply->id); + RDEBUG("Sending %d", request->reply->code); log_request_pair_list(L_DBG_LVL_1, request, request->reply->vps, ""); } break;