From: Daniel McCarney Date: Mon, 9 Sep 2024 18:47:09 +0000 (-0400) Subject: vtls: fix `Curl_ssl_conn_config_match` doc param X-Git-Tag: curl-8_10_1~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=61e48b4df1cd2e335c0a0a06b1375a3092f7727f;p=thirdparty%2Fcurl.git vtls: fix `Curl_ssl_conn_config_match` doc param The configuration data compared to `candidate` comes from `data`, not `conn`. This commit fixes the docstring to reflect this. Closes #14887 --- diff --git a/lib/vtls/vtls.h b/lib/vtls/vtls.h index 1c2538b2e8..fce1e00183 100644 --- a/lib/vtls/vtls.h +++ b/lib/vtls/vtls.h @@ -93,7 +93,7 @@ CURLcode Curl_ssl_conn_config_init(struct Curl_easy *data, void Curl_ssl_conn_config_cleanup(struct connectdata *conn); /** - * Return TRUE iff SSL configuration from `conn` is functionally the + * Return TRUE iff SSL configuration from `data` is functionally the * same as the one on `candidate`. * @param proxy match the proxy SSL config or the main one */