diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-10-31 21:49:38 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-10-31 21:51:19 +0100 |
commit | 95bd2b3e7f00b9ecbd4d5ea7d8bc3b59fcb038c0 (patch) | |
tree | a097d3b9398ca33a83fffe7b53fa018bd466e998 /src/tool_operate.c | |
parent | 1071680946686f0a76a1b6fcbadd8ec81253282d (diff) |
strcase: make the tool use curl_str[n]equal instead
As they are after all part of the public API. Saves space and reduces
complexity. Remove the strcase defines from the curlx_ family.
Suggested-by: Dan Fandrich
Idea: https://curl.haxx.se/mail/lib-2016-10/0136.html
Diffstat (limited to 'src/tool_operate.c')
-rw-r--r-- | src/tool_operate.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tool_operate.c b/src/tool_operate.c index 3307dfc3c..deae87753 100644 --- a/src/tool_operate.c +++ b/src/tool_operate.c @@ -1559,7 +1559,7 @@ static CURLcode operate_do(struct GlobalConfig *global, char *effective_url = NULL; curl_easy_getinfo(curl, CURLINFO_EFFECTIVE_URL, &effective_url); if(effective_url && - curlx_strncasecompare(effective_url, "http", 4)) { + curl_strnequal(effective_url, "http", 4)) { /* This was HTTP(S) */ curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &response); if(response != 200 && response != 206) { @@ -1842,8 +1842,8 @@ CURLcode operate(struct GlobalConfig *config, int argc, argv_item_t argv[]) /* Parse .curlrc if necessary */ if((argc == 1) || - (!curlx_strcasecompare(argv[1], "-q") && - !curlx_strcasecompare(argv[1], "--disable"))) { + (!curl_strequal(argv[1], "-q") && + !curl_strequal(argv[1], "--disable"))) { parseconfig(NULL, config); /* ignore possible failure */ /* If we had no arguments then make sure a url was specified in .curlrc */ |