]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Remove an obsolete comment
authorMatt Caswell <matt@openssl.org>
Fri, 13 Sep 2024 15:25:46 +0000 (16:25 +0100)
committerNeil Horman <nhorman@openssl.org>
Mon, 17 Feb 2025 16:27:33 +0000 (11:27 -0500)
The comment is no longer accurance so it can be removed

Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/25457)

ssl/quic/quic_impl.c

index 85a130351f610487b9a81b6970865320367c4bf3..6df980dbfb1279c61270922f67b4df53af58aac8 100644 (file)
@@ -1313,11 +1313,6 @@ int ossl_quic_get_event_timeout(SSL *s, struct timeval *tv, int *is_infinite)
     qctx_lock(&ctx);
 
     reactor = ossl_quic_obj_get0_reactor(ctx.obj);
-    /*
-     * TODO(QUIC SERVER): There's no longer a way to indicate infinite timeout,
-     * should this now be the responsibility of
-     * ossl_quic_reactor_get_tick_deadline()?
-     */
     deadline = ossl_quic_reactor_get_tick_deadline(reactor);
 
     if (ossl_time_is_infinite(deadline)) {