aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-12-19 07:34:59 +0000
committerHugo Landau <hlandau@openssl.org>2023-12-21 08:12:06 +0000
commit04c561ce4b51a00ddd24d2e5d66d2c12a82639c2 (patch)
tree21786d93634f61d98b31c42580e0e2f05f1010fb
parentf41ab29c787cf438ef58e97c5b308dac8470de52 (diff)
downloadopenssl-04c561ce4b51a00ddd24d2e5d66d2c12a82639c2.tar.gz
QUIC PORT: Add explicit cast to get_time wrapper
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22674)
-rw-r--r--ssl/quic/quic_port.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/quic/quic_port.c b/ssl/quic/quic_port.c
index 9976862138..46ca22cc3b 100644
--- a/ssl/quic/quic_port.c
+++ b/ssl/quic/quic_port.c
@@ -162,7 +162,7 @@ OSSL_TIME ossl_quic_port_get_time(QUIC_PORT *port)
static OSSL_TIME get_time(void *port)
{
- return ossl_quic_port_get_time(port);
+ return ossl_quic_port_get_time((QUIC_PORT *)port);
}
int ossl_quic_port_get_rx_short_dcid_len(const QUIC_PORT *port)