diff options
-rw-r--r-- | radsecproxy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/radsecproxy.c b/radsecproxy.c index f0d053b..8b7906c 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -2075,7 +2075,7 @@ void *clientwr(void *arg) { /* random 0-7 seconds */ RAND_bytes(&rnd, 1); rnd /= 32; - if (!timeout.tv_sec || timeout.tv_sec - now.tv_sec > lastsend.tv_sec + STATUS_SERVER_PERIOD + rnd) + if (!timeout.tv_sec || timeout.tv_sec > lastsend.tv_sec + STATUS_SERVER_PERIOD + rnd) timeout.tv_sec = lastsend.tv_sec + STATUS_SERVER_PERIOD + rnd; } if (timeout.tv_sec) { |