From 74e152f11915cdd46792daf5c5728be1b0dd9503 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sun, 8 Sep 2019 23:47:56 +0200 Subject: tool_setopt: handle a libcurl build without netrc support Reported-by: codesniffer13 on github Fixes #4302 Closes #4305 --- src/tool_setopt.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src') diff --git a/src/tool_setopt.c b/src/tool_setopt.c index 871e25c01..4c98d9057 100644 --- a/src/tool_setopt.c +++ b/src/tool_setopt.c @@ -824,6 +824,16 @@ bool tool_setopt_skip(CURLoption tag) break; } #endif +#ifdef CURL_DISABLE_NETRC +#define USED_TAG + switch(tag) { + case CURLOPT_NETRC: + case CURLOPT_NETRC_FILE: + return TRUE; + default: + break; + } +#endif #ifndef USED_TAG (void)tag; -- cgit v1.2.3