From: Alan T. DeKok Date: Sat, 7 Dec 2019 20:14:16 +0000 (-0500) Subject: make sure that each packet has it's own unique time X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a6c6249b186410380ff26704dcbeebf63d328253;p=thirdparty%2Ffreeradius-server.git make sure that each packet has it's own unique time --- diff --git a/src/lib/io/load.c b/src/lib/io/load.c index 474efcc5a28..93b0d44470d 100644 --- a/src/lib/io/load.c +++ b/src/lib/io/load.c @@ -108,7 +108,7 @@ static void fr_load_generator_send(fr_load_t *l, fr_time_t now, int count) * it more likely that the next timer fires on time. */ for (i = 0; i < count; i++) { - l->callback(now, l->uctx); + l->callback(now + i, l->uctx); } }