From: Alan T. DeKok Date: Tue, 27 Jun 2017 21:39:13 +0000 (-0400) Subject: assertion for variable used only in assertion X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b354e08a5c29267f869193def0feeaab283de50;p=thirdparty%2Ffreeradius-server.git assertion for variable used only in assertion --- diff --git a/src/main/auth.c b/src/main/auth.c index 8a8757df458..d502aa705f2 100644 --- a/src/main/auth.c +++ b/src/main/auth.c @@ -667,7 +667,7 @@ static rlm_rcode_t virtual_server_async(REQUEST *request) final = request->async->process(request, FR_IO_ACTION_RUN); RDEBUG("} # server %s (async) ", cf_section_name2(request->server_cs)); - rad_assert(final == FR_IO_REPLY); + rad_cond_assert(final == FR_IO_REPLY); if (!request->reply->code || (request->reply->code == FR_CODE_ACCESS_REJECT)) {