We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d9dc3d commit 49121b5Copy full SHA for 49121b5
1 file changed
src/ssl.c
@@ -15634,13 +15634,13 @@ int wolfSSL_set_compression(WOLFSSL* ssl)
15634
const unsigned char* in,
15635
long sz, int format)
15636
{
15637
+ int verify;
15638
WOLFSSL_ENTER("wolfSSL_CTX_trust_peer_buffer");
15639
15640
/* sanity check on arguments */
15641
if (sz < 0 || in == NULL || ctx == NULL) {
15642
return BAD_FUNC_ARG;
15643
}
- int verify;
15644
15645
verify = GET_VERIFY_SETTING_CTX(ctx);
15646
if (WOLFSSL_LOAD_VERIFY_DEFAULT_FLAGS &
0 commit comments