From 0c633dab7f06fde52b4d52685d2812ba73c20c25 Mon Sep 17 00:00:00 2001 From: Christopher Moynihan Date: Fri, 14 Aug 2020 12:27:21 -0700 Subject: [PATCH 1/2] Fix typo in mbedtls_ssl_set_bio description. Description referred to mbedtls_ssl_sent_t callback, but the callback is named mbedtls_ssl_send_t. Signed-off-by: Christopher Moynihan --- ChangeLog.d/comment_typo_in_mbedtls_ssl_set_bio.txt | 3 +++ include/mbedtls/ssl.h | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 ChangeLog.d/comment_typo_in_mbedtls_ssl_set_bio.txt diff --git a/ChangeLog.d/comment_typo_in_mbedtls_ssl_set_bio.txt b/ChangeLog.d/comment_typo_in_mbedtls_ssl_set_bio.txt new file mode 100644 index 000000000..c49bdc7b0 --- /dev/null +++ b/ChangeLog.d/comment_typo_in_mbedtls_ssl_set_bio.txt @@ -0,0 +1,3 @@ +Changes + * Fix comment typo in mbedtls_ssl_set_bio_description. + diff --git a/include/mbedtls/ssl.h b/include/mbedtls/ssl.h index d3ee3c4e6..fe33ac8d5 100644 --- a/include/mbedtls/ssl.h +++ b/include/mbedtls/ssl.h @@ -1409,7 +1409,7 @@ void mbedtls_ssl_conf_dbg( mbedtls_ssl_config *conf, * \note For DTLS, you need to provide either a non-NULL * f_recv_timeout callback, or a f_recv that doesn't block. * - * \note See the documentations of \c mbedtls_ssl_sent_t, + * \note See the documentations of \c mbedtls_ssl_send_t, * \c mbedtls_ssl_recv_t and \c mbedtls_ssl_recv_timeout_t for * the conventions those callbacks must follow. * From 2681e99a41d29b608d9717200b8f0543e990724f Mon Sep 17 00:00:00 2001 From: Christopher <33333534+cm6n@users.noreply.github.com> Date: Thu, 20 Aug 2020 14:25:44 -0700 Subject: [PATCH 2/2] Update ChangeLog.d/comment_typo_in_mbedtls_ssl_set_bio.txt Co-authored-by: Hanno Becker Signed-off-by: Christopher Moynihan --- ChangeLog.d/comment_typo_in_mbedtls_ssl_set_bio.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ChangeLog.d/comment_typo_in_mbedtls_ssl_set_bio.txt b/ChangeLog.d/comment_typo_in_mbedtls_ssl_set_bio.txt index c49bdc7b0..2f94c1633 100644 --- a/ChangeLog.d/comment_typo_in_mbedtls_ssl_set_bio.txt +++ b/ChangeLog.d/comment_typo_in_mbedtls_ssl_set_bio.txt @@ -1,3 +1,2 @@ Changes - * Fix comment typo in mbedtls_ssl_set_bio_description. - + * Fix comment typo in documentation of mbedtls_ssl_set_bio.