From: Herwin Weststrate Date: Thu, 10 Sep 2015 05:50:01 +0000 (+0200) Subject: Allow response_delay to be microseconds, too X-Git-Tag: release_3_0_10~132 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=02beea8e64b62b3eaebfeb3a9351bacca646da27;p=thirdparty%2Ffreeradius-server.git Allow response_delay to be microseconds, too This was already done with commit 1d1c50bb0c6f5f013b9680def4b7184ecb63f64b, but there was a second assertion that assumed the delay was at least 1 second. --- diff --git a/src/main/process.c b/src/main/process.c index 1cfb9bf66b3..0453725b00e 100644 --- a/src/main/process.c +++ b/src/main/process.c @@ -1160,8 +1160,6 @@ static void request_response_delay(REQUEST *request, int action) case FR_ACTION_TIMER: fr_event_now(el, &now); - rad_assert(request->response_delay.tv_sec > 0); - /* * See if it's time to send the reply. If not, * we wait some more.