From: Daniel Stenberg Date: Mon, 8 May 2023 10:01:09 +0000 (+0200) Subject: ipv4.d/ipv6.d: they are "mutex", not "boolean" X-Git-Tag: curl-8_1_0~28 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=39434db41f3b976396f16f46f9a7ef759f2a5755;p=thirdparty%2Fcurl.git 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 --- diff --git a/docs/cmdline-opts/ipv4.d b/docs/cmdline-opts/ipv4.d index 5e9cfaeacd..60690bedcf 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 1c466fc2c5..24ce201a2e 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.