From 9e0b51b8b5a57d65928e7a1ee27632ed6b835fad Mon Sep 17 00:00:00 2001 From: Charles Li Date: Wed, 5 Jul 2023 12:26:17 -0500 Subject: [PATCH] chore: fix comment Co-authored-by: ripatel-jump --- src/tango/quic/crypto/fd_quic_crypto_suites.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tango/quic/crypto/fd_quic_crypto_suites.c b/src/tango/quic/crypto/fd_quic_crypto_suites.c index c9e34f5a28..f1efbc8950 100644 --- a/src/tango/quic/crypto/fd_quic_crypto_suites.c +++ b/src/tango/quic/crypto/fd_quic_crypto_suites.c @@ -616,7 +616,7 @@ fd_quic_openssl_strerror( void ) { * so disaabling this for now * TODO fix */ #if 1 - static char errbuf[ 256UL ]; /* openssl docs state buf >= 256 bytes */ + static char errbuf[ 256UL ]; /* openssl docs state buf <= 256 bytes */ errbuf[ 0 ] = '\0'; ulong err_id = ERR_get_error();