From: Alan T. DeKok Date: Thu, 25 Jan 2024 08:49:47 +0000 (-0500) Subject: remove erroneous assert. should help with #5276 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=89997f4267ccb888f0c53c7dc3c2baa13e0a1caf;p=thirdparty%2Ffreeradius-server.git remove erroneous assert. should help with #5276 The code for NAK later assumes that there is a connection, so the assert is wrong --- diff --git a/src/lib/io/master.c b/src/lib/io/master.c index 7d0ba224d63..a51056c10d5 100644 --- a/src/lib/io/master.c +++ b/src/lib/io/master.c @@ -1963,7 +1963,6 @@ static void client_expiry_timer(fr_event_list_t *el, fr_time_t now, void *uctx) break; case PR_CLIENT_NAK: - fr_assert(!connection); delay = inst->nak_lifetime; break;