detail listener is broken in the 3.2.9 release
I bisected it down to https://github.com/FreeRADIUS/freeradius-server/commit/5691cbc615e515490fc49... It didn't revert cleanly so I looked a bit closer and noticed that it ends up changing if (!request->packet->vps) { .. } else { rcode = 0; } .. return 1; into a more direct if (request->packet->vps) return 0; The problem is obviously that the return value changes from 1 to 0. Simple fix ready for pulling at https://github.com/FreeRADIUS/freeradius-server/pull/5870 (yes, I found this and verified the fix in a real world installation) Bjørn
Thanks. We'll pull in the patch. And then figure out what we want to do with an updated release. I thought we had tests for the detail file reader. But I'll double-check.
On Jun 2, 2026, at 9:06 AM, Bjørn Mork via Freeradius-Users <freeradius-users@lists.freeradius.org> wrote:
I bisected it down to https://github.com/FreeRADIUS/freeradius-server/commit/5691cbc615e515490fc49...
It didn't revert cleanly so I looked a bit closer and noticed that it ends up changing
if (!request->packet->vps) { .. } else { rcode = 0; } .. return 1;
into a more direct
if (request->packet->vps) return 0;
The problem is obviously that the return value changes from 1 to 0. Simple fix ready for pulling at https://github.com/FreeRADIUS/freeradius-server/pull/5870
(yes, I found this and verified the fix in a real world installation)
Bjørn - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
participants (2)
-
Alan DeKok -
Bjørn Mork