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

View File

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