mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-03-24 11:37:17 +01:00
Fixes for minor compiler cast warnings.
This commit is contained in:
@@ -4467,10 +4467,10 @@ int InitSSL_Suites(WOLFSSL* ssl)
|
||||
havePSK = (byte)ssl->options.havePSK;
|
||||
#endif /* NO_PSK */
|
||||
#ifdef HAVE_ANON
|
||||
haveAnon = ssl->options.haveAnon;
|
||||
haveAnon = (byte)ssl->options.haveAnon;
|
||||
#endif /* HAVE_ANON*/
|
||||
#ifdef WOLFSSL_MULTICAST
|
||||
haveMcast = ssl->options.haveMcast;
|
||||
haveMcast = (byte)ssl->options.haveMcast;
|
||||
#endif /* WOLFSSL_MULTICAST */
|
||||
|
||||
#ifdef WOLFSSL_EARLY_DATA
|
||||
|
||||
Reference in New Issue
Block a user