diff options
Diffstat (limited to 'radsecproxy.c')
-rw-r--r-- | radsecproxy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/radsecproxy.c b/radsecproxy.c index 7b512d7..02cf142 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -1411,7 +1411,7 @@ void *clientwr(void *arg) { } gettimeofday(&now, NULL); - if (now.tv_sec <= rq->expiry.tv_sec) { + if (now.tv_sec < rq->expiry.tv_sec) { if (!timeout.tv_sec || rq->expiry.tv_sec < timeout.tv_sec) timeout.tv_sec = rq->expiry.tv_sec; pthread_mutex_unlock(&server->newrq_mutex); |