From: Hugo Landau Date: Thu, 13 Jul 2023 13:40:48 +0000 (+0100) Subject: Minor fixups X-Git-Tag: openssl-3.2.0-alpha1~414 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f36504cc393e10abd35a8b6a25d8965cddcacf98;p=thirdparty%2Fopenssl.git Minor fixups Reviewed-by: Tomas Mraz Reviewed-by: Matt Caswell Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/21135) --- diff --git a/ssl/quic/quic_tserver.c b/ssl/quic/quic_tserver.c index c8970e4761d..8dbe3da716d 100644 --- a/ssl/quic/quic_tserver.c +++ b/ssl/quic/quic_tserver.c @@ -492,11 +492,11 @@ int ossl_quic_tserver_shutdown(QUIC_TSERVER *srv) int ossl_quic_tserver_ping(QUIC_TSERVER *srv) { - if (ossl_quic_channel_is_terminated(srv->ch)) - return 0; + if (ossl_quic_channel_is_terminated(srv->ch)) + return 0; if (!ossl_quic_channel_ping(srv->ch)) - return 0; + return 0; ossl_quic_reactor_tick(ossl_quic_channel_get_reactor(srv->ch), 0); return 1;