From fd0627521b4173579187f611ae7848848405c2e9 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Tue, 21 Apr 2020 20:18:26 +0200 Subject: [PATCH] Add changelog entry for #3176: new error functions Signed-off-by: Gilles Peskine --- ChangeLog.d/error_const.txt | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 ChangeLog.d/error_const.txt diff --git a/ChangeLog.d/error_const.txt b/ChangeLog.d/error_const.txt new file mode 100644 index 0000000000..a3ee45740c --- /dev/null +++ b/ChangeLog.d/error_const.txt @@ -0,0 +1,6 @@ +Features + * New functions in the error module return constant strings for + high- and low-level error codes, complementing mbedtls_strerror + which constructs a string for any error code, including compound + ones, but requires a writable buffer. Contributed by Gaurav Aggarwal + in #3176.