summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Dufresne <laurent.dufresne@hotmail.com>2021-05-31 20:55:14 +0200
committerDaniel Stenberg <daniel@haxx.se>2021-06-01 09:35:34 +0200
commit8cc1fee5b96244f3468d300eaa02edaca55d9942 (patch)
tree56e72df64436fec8dff234f618317ae24f2c5804
parent05e0453050def7323fbc8210886f909819edcc5f (diff)
downloadcurl-8cc1fee5b96244f3468d300eaa02edaca55d9942.tar.gz
setopt: fix incorrect comments
Closes #7157
-rw-r--r--lib/setopt.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/setopt.c b/lib/setopt.c
index fb8b86d47..5446700e7 100644
--- a/lib/setopt.c
+++ b/lib/setopt.c
@@ -1689,7 +1689,7 @@ CURLcode Curl_vsetopt(struct Curl_easy *data, CURLoption option, va_list param)
break;
case CURLOPT_SSLCERT_BLOB:
/*
- * Blob that holds file name of the SSL certificate to use
+ * Blob that holds file content of the SSL certificate to use
*/
result = Curl_setblobopt(&data->set.blobs[BLOB_CERT],
va_arg(param, struct curl_blob *));
@@ -1704,7 +1704,7 @@ CURLcode Curl_vsetopt(struct Curl_easy *data, CURLoption option, va_list param)
break;
case CURLOPT_PROXY_SSLCERT_BLOB:
/*
- * Blob that holds file name of the SSL certificate to use for proxy
+ * Blob that holds file content of the SSL certificate to use for proxy
*/
result = Curl_setblobopt(&data->set.blobs[BLOB_CERT_PROXY],
va_arg(param, struct curl_blob *));
@@ -1735,7 +1735,7 @@ CURLcode Curl_vsetopt(struct Curl_easy *data, CURLoption option, va_list param)
break;
case CURLOPT_SSLKEY_BLOB:
/*
- * Blob that holds file name of the SSL key to use
+ * Blob that holds file content of the SSL key to use
*/
result = Curl_setblobopt(&data->set.blobs[BLOB_KEY],
va_arg(param, struct curl_blob *));
@@ -1750,7 +1750,7 @@ CURLcode Curl_vsetopt(struct Curl_easy *data, CURLoption option, va_list param)
break;
case CURLOPT_PROXY_SSLKEY_BLOB:
/*
- * Blob that holds file name of the SSL key to use for proxy
+ * Blob that holds file content of the SSL key to use for proxy
*/
result = Curl_setblobopt(&data->set.blobs[BLOB_KEY_PROXY],
va_arg(param, struct curl_blob *));