]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
QUIC: Fix nit
authorHugo Landau <hlandau@openssl.org>
Wed, 2 Aug 2023 19:35:25 +0000 (20:35 +0100)
committerMatt Caswell <matt@openssl.org>
Tue, 8 Aug 2023 13:33:42 +0000 (14:33 +0100)
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/21547)

ssl/quic/quic_rx_depack.c

index d1e166e062c0e93c00fecd4d2dbcd0cef264e7ec..9e10a0a0324be8453748cef9be02db29486e5a7e 100644 (file)
@@ -921,7 +921,7 @@ static int depack_do_frame_path_challenge(PACKET *pkt,
      * respond by echoing the data contained in the PATH_CHALLENGE frame in a
      * PATH_RESPONSE frame.
      *
-     * TODO(QUIC): We should try to avoid allocation here in the future.
+     * TODO(QUIC FUTURE): We should try to avoid allocation here in the future.
      */
     encoded_len = sizeof(uint64_t) + 1;
     if ((encoded = OPENSSL_malloc(encoded_len)) == NULL)