From: Alan T. DeKok Date: Wed, 9 Sep 2015 14:16:20 +0000 (-0400) Subject: Allow response_delay to be microseconds, too X-Git-Tag: release_3_0_10~150 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1d1c50bb0c6f5f013b9680def4b7184ecb63f64b;p=thirdparty%2Ffreeradius-server.git Allow response_delay to be microseconds, too --- diff --git a/src/main/process.c b/src/main/process.c index 99a95c500b3..1cfb9bf66b3 100644 --- a/src/main/process.c +++ b/src/main/process.c @@ -1417,8 +1417,8 @@ static void request_finish(REQUEST *request, int action) /* * Send the reply. */ - if (request->response_delay.tv_sec == 0) { - rad_assert(request->response_delay.tv_usec == 0); + if ((request->response_delay.tv_sec == 0) && + (request->response_delay.tv_usec == 0)) { /* * Don't print a reply if there's none to send.