]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
CURLOPT_TLSAUTH_PASSWORD/USERNAME.md: language fixups
authorDaniel Stenberg <daniel@haxx.se>
Sat, 29 Jun 2024 21:43:36 +0000 (23:43 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Sun, 30 Jun 2024 14:04:15 +0000 (16:04 +0200)
- relies *on* TLS SRP
- *for* the specific TLS backends

Closes #14061

docs/libcurl/opts/CURLOPT_TLSAUTH_PASSWORD.md
docs/libcurl/opts/CURLOPT_TLSAUTH_USERNAME.md

index 6a9a8382959b4df1729c2f7b8c65557bcb8d1dfd..40f8e7c794274f095a71a947317a8928d409c914 100644 (file)
@@ -31,13 +31,13 @@ CURLcode curl_easy_setopt(CURL *handle, CURLOPT_TLSAUTH_PASSWORD, char *pwd);
 
 Pass a char pointer as parameter, which should point to the null-terminated
 password to use for the TLS authentication method specified with the
-CURLOPT_TLSAUTH_TYPE(3) option. Requires that the
-CURLOPT_TLSAUTH_USERNAME(3) option also be set.
+CURLOPT_TLSAUTH_TYPE(3) option. Requires that the CURLOPT_TLSAUTH_USERNAME(3)
+option also be set.
 
 The application does not have to keep the string around after setting this
 option.
 
-This feature relies in TLS SRP which does not work with TLS 1.3.
+This feature relies on TLS SRP which does not work with TLS 1.3.
 
 # DEFAULT
 
@@ -63,7 +63,7 @@ int main(void)
 
 # AVAILABILITY
 
-Added in 7.21.4, with the OpenSSL and GnuTLS backends only
+Added in 7.21.4, for the OpenSSL and GnuTLS backends only
 
 # RETURN VALUE
 
index c69ac816705f1ba4d3bd81eac699626ee896cd69..e6d5ad84581a30a6789a2ecc9201a0be453c1f9d 100644 (file)
@@ -30,13 +30,13 @@ CURLcode curl_easy_setopt(CURL *handle, CURLOPT_TLSAUTH_USERNAME, char *user);
 
 Pass a char pointer as parameter, which should point to the null-terminated
 username to use for the TLS authentication method specified with the
-CURLOPT_TLSAUTH_TYPE(3) option. Requires that the
-CURLOPT_TLSAUTH_PASSWORD(3) option also be set.
+CURLOPT_TLSAUTH_TYPE(3) option. Requires that the CURLOPT_TLSAUTH_PASSWORD(3)
+option also be set.
 
 The application does not have to keep the string around after setting this
 option.
 
-This feature relies in TLS SRP which does not work with TLS 1.3.
+This feature relies on TLS SRP which does not work with TLS 1.3.
 
 # DEFAULT
 
@@ -62,7 +62,7 @@ int main(void)
 
 # AVAILABILITY
 
-Added in 7.21.4, with the OpenSSL and GnuTLS backends only
+Added in 7.21.4, for the OpenSSL and GnuTLS backends only
 
 # RETURN VALUE