mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-30 10:47:28 +02:00
DTLS Flag
Fix an ifdef flag that should have been WOLFSSL_DTLS, not HAVE_DTLS.
This commit is contained in:
@ -12282,7 +12282,7 @@ static int SanityCheckMsgReceived(WOLFSSL* ssl, byte type)
|
|||||||
WOLFSSL_MSG("Duplicate Finished received");
|
WOLFSSL_MSG("Duplicate Finished received");
|
||||||
return DUPLICATE_MSG_E;
|
return DUPLICATE_MSG_E;
|
||||||
}
|
}
|
||||||
#ifdef HAVE_DTLS
|
#ifdef WOLFSSL_DTLS
|
||||||
if (ssl->options.dtls) {
|
if (ssl->options.dtls) {
|
||||||
if (ssl->keys.curEpoch == 0) {
|
if (ssl->keys.curEpoch == 0) {
|
||||||
WOLFSSL_MSG("Finished received with epoch 0");
|
WOLFSSL_MSG("Finished received with epoch 0");
|
||||||
|
Reference in New Issue
Block a user