curl: mark two more options strings for --libcurl output
This commit is contained in:
parent
fd0c678e21
commit
f322ca7765
@ -889,7 +889,7 @@ static CURLcode operate_do(struct GlobalConfig *global,
|
|||||||
(long)CURLAUTH_BASIC);
|
(long)CURLAUTH_BASIC);
|
||||||
|
|
||||||
/* new in libcurl 7.19.4 */
|
/* new in libcurl 7.19.4 */
|
||||||
my_setopt(curl, CURLOPT_NOPROXY, config->noproxy);
|
my_setopt_str(curl, CURLOPT_NOPROXY, config->noproxy);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -906,7 +906,7 @@ static CURLcode operate_do(struct GlobalConfig *global,
|
|||||||
my_setopt_enum(curl, CURLOPT_NETRC, (long)CURL_NETRC_IGNORED);
|
my_setopt_enum(curl, CURLOPT_NETRC, (long)CURL_NETRC_IGNORED);
|
||||||
|
|
||||||
if(config->netrc_file)
|
if(config->netrc_file)
|
||||||
my_setopt(curl, CURLOPT_NETRC_FILE, config->netrc_file);
|
my_setopt_str(curl, CURLOPT_NETRC_FILE, config->netrc_file);
|
||||||
|
|
||||||
my_setopt(curl, CURLOPT_TRANSFERTEXT, config->use_ascii?1L:0L);
|
my_setopt(curl, CURLOPT_TRANSFERTEXT, config->use_ascii?1L:0L);
|
||||||
if(config->login_options)
|
if(config->login_options)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user