mirror of https://github.com/wolfSSL/wolfssl.git
fix: add explicit cast to abide g++ compiler
parent
f3262005e4
commit
3a8e6f2280
|
@ -5880,7 +5880,7 @@ int SendTls13ServerHello(WOLFSSL* ssl, byte extMsgType)
|
||||||
#ifdef WOLFSSL_DTLS13
|
#ifdef WOLFSSL_DTLS13
|
||||||
if (ssl->options.dtls) {
|
if (ssl->options.dtls) {
|
||||||
ret = Dtls13HandshakeSend(ssl, output, sendSz, sendSz,
|
ret = Dtls13HandshakeSend(ssl, output, sendSz, sendSz,
|
||||||
extMsgType, 0);
|
(enum HandShakeType)extMsgType, 0);
|
||||||
|
|
||||||
WOLFSSL_LEAVE("SendTls13ServerHello", ret);
|
WOLFSSL_LEAVE("SendTls13ServerHello", ret);
|
||||||
WOLFSSL_END(WC_FUNC_SERVER_HELLO_SEND);
|
WOLFSSL_END(WC_FUNC_SERVER_HELLO_SEND);
|
||||||
|
|
Loading…
Reference in New Issue