]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
ipv4.d/ipv6.d: they are "mutex", not "boolean"
authorDaniel Stenberg <daniel@haxx.se>
Mon, 8 May 2023 10:01:09 +0000 (12:01 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 8 May 2023 12:09:40 +0000 (14:09 +0200)
... which for example means they do not have --no-* versions.

Reported-by: Harry Sintonen
Fixes #11085
Closes #11086

docs/cmdline-opts/ipv4.d
docs/cmdline-opts/ipv6.d

index 5e9cfaeacddf718f0a65d97641324e07be658b35..60690bedcfcee53b79b278ecb5187bfba4fa2f4f 100644 (file)
@@ -11,7 +11,7 @@ See-also: http1.1 http2
 Help: Resolve names to IPv4 addresses
 Category: connection dns
 Example: --ipv4 $URL
-Multi: boolean
+Multi: mutex
 ---
-This option tells curl to use IPv4 addresses only, and not for example try
-IPv6.
+This option tells curl to use IPv4 addresses only when resolving host names,
+and not for example try IPv6.
index 1c466fc2c5f93c584d72d23526e71fdb32593ec7..24ce201a2e2389ef8cccfad4653af80e15e1f9b7 100644 (file)
@@ -11,7 +11,7 @@ See-also: http1.1 http2
 Help: Resolve names to IPv6 addresses
 Category: connection dns
 Example: --ipv6 $URL
-Multi: boolean
+Multi: mutex
 ---
-This option tells curl to use IPv6 addresses only, and not for example try
-IPv4.
+This option tells curl to use IPv6 addresses only when resolving host names,
+and not for example try IPv4.