From: Alan T. DeKok Date: Tue, 16 Jul 2024 21:51:59 +0000 (-0400) Subject: print out full value of VP X-Git-Tag: release_3_2_6~57 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0ea2a4db5025b86bfbb4dd056ef43dc829c14f52;p=thirdparty%2Ffreeradius-server.git print out full value of VP --- diff --git a/src/main/auth.c b/src/main/auth.c index 2dc3e602322..d9dfc9505c2 100644 --- a/src/main/auth.c +++ b/src/main/auth.c @@ -591,8 +591,13 @@ autz_redo: ((tmp = fr_pair_find_by_num(request->config, PW_PACKET_DST_IP_ADDRESS, 0, TAG_ANY)) != NULL) || ((tmp = fr_pair_find_by_num(request->config, PW_PACKET_DST_IPV6_ADDRESS, 0, TAG_ANY)) != NULL) || ((tmp = fr_pair_find_by_num(request->config, PW_HOME_SERVER_NAME, 0, TAG_ANY)) != NULL)) { - RDEBUG("Proxying due to %s", tmp->da->name); - return RLM_MODULE_OK; + if (RDEBUG_ENABLED) { + char buffer[512]; + + vp_prints(buffer, sizeof(buffer), tmp); + RDEBUG("Proxying due to %s", buffer); + return RLM_MODULE_OK; + } } }