From e29dfb2157cdfe3fa1736a98530b2bd601252710 Mon Sep 17 00:00:00 2001 From: Hanno Becker Date: Wed, 24 Jul 2019 14:23:16 +0100 Subject: [PATCH] Add missing word in documentation of mbedtls_ssl_check_record() --- include/mbedtls/ssl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/mbedtls/ssl.h b/include/mbedtls/ssl.h index ce6c9d834..edb0a4699 100644 --- a/include/mbedtls/ssl.h +++ b/include/mbedtls/ssl.h @@ -1922,8 +1922,8 @@ void mbedtls_ssl_conf_read_timeout( mbedtls_ssl_config *conf, uint32_t timeout ) * \note This routine only checks whether the provided buffer begins * with a valid, fresh and authentic record, but does not check * potential data following the initial record. In particular, - * it is possible to pass DTLS datagrams containing records, - * in which case only the first record is checked. + * it is possible to pass DTLS datagrams containing multiple + * records, in which case only the first record is checked. * * \note This function modifies the input buffer \p buf. If you need * to preserve the original record, you have to maintain a copy.