From: Sashan Date: Mon, 21 Jul 2025 06:43:49 +0000 (+0200) Subject: Update ssl/quic/quic_ackm.c X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7a30cd3793748e7afe3779969509d146813d858c;p=thirdparty%2Fopenssl.git Update ssl/quic/quic_ackm.c Co-authored-by: Andrew Dinh Reviewed-by: Neil Horman Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/28023) (cherry picked from commit 4a3c954a0cdb9fa1f511ce43bb4833303a6067e2) --- diff --git a/ssl/quic/quic_ackm.c b/ssl/quic/quic_ackm.c index a16875ed599..c377f72490d 100644 --- a/ssl/quic/quic_ackm.c +++ b/ssl/quic/quic_ackm.c @@ -888,7 +888,7 @@ static OSSL_TIME ackm_get_pto_time_and_space(OSSL_ACKM *ackm, int *space) * Only re-arm timer if stack has sent at least one ACK eliciting frame. * If stack has sent no ACK eliciting at given encryption level then * particular timer is zero and we must not attempt to set it. Timer time - * runs since epoch (Jan 1 1970 and we must not set timer to past. + * runs since epoch (Jan 1 1970) and we must not set timer to past. */ if (!ossl_time_is_zero(ackm->time_of_last_ack_eliciting_pkt[i])) { t = ossl_time_add(ackm->time_of_last_ack_eliciting_pkt[i], duration);