1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

change prototype of write_early_data_ext

Signed-off-by: Jerry Yu <jerry.h.yu@arm.com>
This commit is contained in:
Jerry Yu
2023-12-05 10:40:49 +08:00
parent 163e12f7ff
commit c59c586ac4
4 changed files with 12 additions and 12 deletions

View File

@ -1176,7 +1176,7 @@ int mbedtls_ssl_tls13_write_client_hello_exts(mbedtls_ssl_context *ssl,
ssl->conf->early_data_enabled == MBEDTLS_SSL_EARLY_DATA_ENABLED) {
ret = mbedtls_ssl_tls13_write_early_data_ext(
ssl, p, end, &ext_len, NULL);
ssl, 0, p, end, &ext_len);
if (ret != 0) {
return ret;
}