summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2023-05-08 12:01:09 +0200
committerDaniel Stenberg <daniel@haxx.se>2023-05-08 14:09:40 +0200
commit39434db41f3b976396f16f46f9a7ef759f2a5755 (patch)
tree74b148da73400cbc867b907499f67b7e0efa08ec
parent5a7ae421c57a4bd1cfa12e944092b70be6a496c2 (diff)
downloadcurl-39434db41f3b976396f16f46f9a7ef759f2a5755.tar.gz
ipv4.d/ipv6.d: they are "mutex", not "boolean"
... which for example means they do not have --no-* versions. Reported-by: Harry Sintonen Fixes #11085 Closes #11086
-rw-r--r--docs/cmdline-opts/ipv4.d6
-rw-r--r--docs/cmdline-opts/ipv6.d6
2 files changed, 6 insertions, 6 deletions
diff --git a/docs/cmdline-opts/ipv4.d b/docs/cmdline-opts/ipv4.d
index 5e9cfaeac..60690bedc 100644
--- a/docs/cmdline-opts/ipv4.d
+++ b/docs/cmdline-opts/ipv4.d
@@ -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.
diff --git a/docs/cmdline-opts/ipv6.d b/docs/cmdline-opts/ipv6.d
index 1c466fc2c..24ce201a2 100644
--- a/docs/cmdline-opts/ipv6.d
+++ b/docs/cmdline-opts/ipv6.d
@@ -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.