Skip to content

Commit

Permalink
Fix NO_WOLFSSL_STUB typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
kareem-wolfssl committed Apr 26, 2024
1 parent e1bd4dd commit 2105882
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -19648,7 +19648,7 @@ long wolfSSL_CTX_ctrl(WOLFSSL_CTX* ctx, int cmd, long opt, void* pt)
return ret;
}

#ifndef WOLFSSL_NO_STUB
#ifndef NO_WOLFSSL_STUB
long wolfSSL_CTX_callback_ctrl(WOLFSSL_CTX* ctx, int cmd, void (*fp)(void))
{
(void) ctx;
Expand All @@ -19658,7 +19658,7 @@ long wolfSSL_CTX_callback_ctrl(WOLFSSL_CTX* ctx, int cmd, void (*fp)(void))
return WOLFSSL_FAILURE;

}
#endif /* WOLFSSL_NO_STUB */
#endif /* NO_WOLFSSL_STUB */

#ifndef NO_WOLFSSL_STUB
long wolfSSL_CTX_clear_extra_chain_certs(WOLFSSL_CTX* ctx)
Expand Down

0 comments on commit 2105882

Please sign in to comment.