From: Alan T. DeKok Date: Thu, 20 Nov 2025 20:40:04 +0000 (-0500) Subject: use internal print, so we can do %pV and %pP X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4998fd6b3b1eeec4572b2f0428fd059dccfc01b9;p=thirdparty%2Ffreeradius-server.git use internal print, so we can do %pV and %pP --- diff --git a/src/lib/util/proto.c b/src/lib/util/proto.c index 6a49dbeabb0..ec592ba6390 100644 --- a/src/lib/util/proto.c +++ b/src/lib/util/proto.c @@ -30,7 +30,7 @@ void fr_proto_print(char const *file, int line, char const *fmt, ...) char *buff; va_start(ap, fmt); - buff = talloc_vasprintf(NULL, fmt, ap); + buff = fr_vasprintf(NULL, fmt, ap); va_end(ap); fr_log(&default_log, L_DBG, file, line, "msg: %pV", fr_box_strvalue_buffer(buff));