From: Neil Horman Date: Mon, 16 Dec 2024 17:08:08 +0000 (-0500) Subject: removing debug code from quic_impl X-Git-Tag: openssl-3.5.0-alpha1~285 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f42036822ef299fdfed0712730e525eca9b5db4a;p=thirdparty%2Fopenssl.git removing debug code from quic_impl I had experimented with starting the ssl handshake during accept, and forgot to remove it Reviewed-by: Tomas Mraz Reviewed-by: Saša Nedvědický (Merged from https://github.com/openssl/openssl/pull/26178) --- diff --git a/ssl/quic/quic_impl.c b/ssl/quic/quic_impl.c index 17d0d621cee..e8b0888bcad 100644 --- a/ssl/quic/quic_impl.c +++ b/ssl/quic/quic_impl.c @@ -4436,8 +4436,6 @@ SSL *ossl_quic_accept_connection(SSL *ssl, uint64_t flags) out: qctx_unlock(&ctx); - if (qc != NULL) - ossl_quic_do_handshake(&qc->obj.ssl); return qc != NULL ? &qc->obj.ssl : NULL; }