From: Yang Tse Date: Wed, 21 Sep 2011 02:28:46 +0000 (+0200) Subject: curl tool: make my_setopt ignore curl_easy_setopt result again. X-Git-Tag: curl-7_23_0~171 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=28526ed6e080b5c74fde65fd24abb1324f742789;p=curl curl tool: make my_setopt ignore curl_easy_setopt result again. Related code not ready yet for this kind of checks. --- diff --git a/src/tool_setopt.h b/src/tool_setopt.h index 7a1b8c591..e75f328f3 100644 --- a/src/tool_setopt.h +++ b/src/tool_setopt.h @@ -29,7 +29,7 @@ CURLcode tool_setopt(CURL *curl, bool str, struct Configurable *config, /* * Macros used in operate() */ - +#if 0 #define my_setopt(x,y,z) do { \ res = tool_setopt(x, FALSE, config, #y, y, z); \ if(res) \ @@ -41,6 +41,10 @@ CURLcode tool_setopt(CURL *curl, bool str, struct Configurable *config, if(res) \ goto quit_curl; \ } WHILE_FALSE +#else +#define my_setopt(x,y,z) tool_setopt(x, FALSE, config, #y, y, z) +#define my_setopt_str(x,y,z) tool_setopt(x, TRUE, config, #y, y, z) +#endif #define res_setopt(x,y,z) tool_setopt(x, FALSE, config, #y, y, z)