mirror of
https://github.com/curl/curl.git
synced 2026-05-30 05:17:30 +03:00
mbedtls: fix MBEDTLS_DEBUG builds
This commit is contained in:
parent
c111178bd4
commit
83b39a4f4d
1 changed files with 3 additions and 2 deletions
|
|
@ -101,7 +101,8 @@ static int entropy_func_mutex(void *data, unsigned char *output, size_t len)
|
|||
#undef MBEDTLS_DEBUG
|
||||
|
||||
#ifdef MBEDTLS_DEBUG
|
||||
static void mbed_debug(void *context, int level, const char *line)
|
||||
static void mbed_debug(void *context, int level, const char *f_name,
|
||||
int line_nb, const char *line)
|
||||
{
|
||||
struct SessionHandle *data = NULL;
|
||||
|
||||
|
|
@ -423,7 +424,7 @@ mbed_connect_step1(struct connectdata *conn,
|
|||
#endif
|
||||
|
||||
#ifdef MBEDTLS_DEBUG
|
||||
mbedtls_ssl_conf_dbg(&connssl->ssl, mbedtls_debug, data);
|
||||
mbedtls_ssl_conf_dbg(&connssl->config, mbedtls_debug, data);
|
||||
#endif
|
||||
|
||||
connssl->connecting_state = ssl_connect_2;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue