fixes for -Werror=declaration-after-statement in debug builds.

This commit is contained in:
Daniel Pouzzner 2022-04-04 09:29:26 -05:00
parent 492704992a
commit 0d6c283f7a
2 changed files with 5 additions and 3 deletions

View File

@ -16555,7 +16555,6 @@ const char* AlertTypeToString(int type)
static void LogAlert(int type)
{
(void)type;
#ifdef DEBUG_WOLFSSL
const char* typeStr;
char buff[60];
@ -16565,6 +16564,8 @@ static void LogAlert(int type)
XSNPRINTF(buff, sizeof(buff), "Alert type: %s", typeStr);
WOLFSSL_MSG(buff);
}
#else
(void)type;
#endif /* DEBUG_WOLFSSL */
}

View File

@ -34851,19 +34851,20 @@ static void msg_cb(int write_p, int version, int content_type,
#endif
static int msgCb(SSL_CTX *ctx, SSL *ssl)
{
(void) ctx;
(void) ssl;
#if defined(OPENSSL_ALL) && defined(SESSION_CERTS) && !defined(NO_BIO)
STACK_OF(X509)* sk;
X509* x509;
int i, num;
BIO* bio;
#endif
(void) ctx;
printf("\n===== msgcb called ====\n");
#if defined(SESSION_CERTS) && defined(TEST_PEER_CERT_CHAIN)
AssertTrue(SSL_get_peer_cert_chain(ssl) != NULL);
AssertIntEQ(((WOLFSSL_X509_CHAIN *)SSL_get_peer_cert_chain(ssl))->count, 2);
AssertNotNull(SSL_get0_verified_chain(ssl));
#else
(void) ssl;
#endif
#if defined(OPENSSL_ALL) && defined(SESSION_CERTS) && !defined(NO_BIO)