From 39434db41f3b976396f16f46f9a7ef759f2a5755 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 8 May 2023 12:01:09 +0200 Subject: [PATCH] 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 --- docs/cmdline-opts/ipv4.d | 6 +++--- docs/cmdline-opts/ipv6.d | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) 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.