Skip to content

Commit

Permalink
Minor fixups
Browse files Browse the repository at this point in the history
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from #21135)
  • Loading branch information
hlandau authored and paulidale committed Jul 16, 2023
1 parent 9ff3a99 commit f36504c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ssl/quic/quic_tserver.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit f36504c

Please sign in to comment.