From: Alan T. DeKok Date: Thu, 29 Jan 2026 13:47:36 +0000 (-0500) Subject: we still need the suppression of parents when printing X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fheads%2Fmaster;p=thirdparty%2Ffreeradius-server.git we still need the suppression of parents when printing so we can use %pV instead of %pP. And %pV is better than fr_pair_print_value_quoted() --- diff --git a/src/lib/server/log.c b/src/lib/server/log.c index 73264f22ed..31fa0899d9 100644 --- a/src/lib/server/log.c +++ b/src/lib/server/log.c @@ -804,7 +804,7 @@ void log_request_pair(fr_log_lvl_t lvl, request_t *request, default: fr_assert(fr_type_is_leaf(vp->vp_type)); - RDEBUGX(lvl, "%s%pP", prefix ? prefix : "", vp); + RDEBUGX(lvl, "%s%s%pV", prefix ? prefix : "", fr_sbuff_start(oid_buff), &vp->data); break; } }