From 66ae17e72ca9f1e92b7690b0d846fa8df603e7c3 Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Sun, 7 Mar 2021 15:29:38 +0100 Subject: tls-aux.c: Fix comments. --- tls-aux.c | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/tls-aux.c b/tls-aux.c index a3fc7908..a2c2a080 100644 --- a/tls-aux.c +++ b/tls-aux.c @@ -6,10 +6,9 @@ #include #include -/** return a constant copy of the default SSL certificate path - * the directory with hashed certificates, see - * SSL_CTX_load_verify_locations(3), - * not to be modified by caller. */ +/** return a constant copy of the default SSL certificate path, i. e. + * the directory with hashed certificates, see SSL_CTX_load_verify_locations(3). + * Return value not to be modified by caller. */ const char *get_default_cert_path(void) { const char *rb = (char *)0, *tmp; @@ -21,9 +20,9 @@ const char *get_default_cert_path(void) { } /** return a constant copy of the default SSL certificate file - * the directory with hashed certificates, see - * SSL_CTX_load_verify_locations(3), - * not to be modified by caller. */ + * with a concatenation of all trusted certificates, + * the so-called certificate bundle. See SSL_CTX_load_verify_locations(3), + * Return value not to be modified by caller. */ const char *get_default_cert_file(void) { const char *rb = (char *)0, *tmp; -- cgit v1.2.3