src/internal.c: fixes for redundant assignments and preprocessor typo.

This commit is contained in:
Daniel Pouzzner
2022-07-27 13:26:53 -05:00
parent c63e22701f
commit 9256d6aa7c

View File

@ -18124,7 +18124,7 @@ int ProcessReplyEx(WOLFSSL* ssl, int allowSocketErr)
if(IsAtLeastTLSv1_3(ssl->version)) {
#ifdef WOLFSSL_DTLS13
ret = Dtls13ProcessBufferedMessages(ssl);
#elif
#else
ret = NOT_COMPILED_IN;
#endif /* WOLFSSL_DTLS13 */
}
@ -23272,7 +23272,6 @@ int SetCipherList(WOLFSSL_CTX* ctx, Suites* suites, const char* list)
haveStaticECC = 1;
haveStaticRSA = 1;
haveRSAsig = 1;
haveECDSAsig = 1;
havePSK = 1;
haveNull = 0;
@ -23296,7 +23295,6 @@ int SetCipherList(WOLFSSL_CTX* ctx, Suites* suites, const char* list)
haveStaticECC = 0;
haveStaticRSA = 0;
haveRSAsig = 1;
haveECDSAsig = 1;
havePSK = 1;
haveNull = 0;