commit | c59c586ac4c761230107f2c58b57df6228d955ad | [log] [tgz] |
---|---|---|
author | Jerry Yu <jerry.h.yu@arm.com> | Tue Dec 05 10:40:49 2023 +0800 |
committer | Jerry Yu <jerry.h.yu@arm.com> | Wed Dec 06 18:21:15 2023 +0800 |
tree | dd928f5b7d4fc87bd783343e68fb8abb9f9982d0 | |
parent | 163e12f7ffacae88b27ca164ac9c654b3f5f8b0f [diff] [blame] |
change prototype of `write_early_data_ext` Signed-off-by: Jerry Yu <jerry.h.yu@arm.com>
diff --git a/library/ssl_tls13_client.c b/library/ssl_tls13_client.c index fa6c4c6..ae11364 100644 --- a/library/ssl_tls13_client.c +++ b/library/ssl_tls13_client.c
@@ -1176,7 +1176,7 @@ 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; }