diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-10-31 09:45:17 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-10-31 09:45:17 +0100 |
commit | 8fe4bd084412f3085638907268c5ffd8bf93c339 (patch) | |
tree | 76559169a181041505bb214e556e8e72028c5118 /src | |
parent | 44c53cc38bea66b7612a82fa4c9b68884b9167fa (diff) |
curl_strequal: part of public API/ABI, needs to be kept
These two public functions have been mentioned as deprecated since a
very long time but since they are still part of the API and ABI we need
to keep them around.
Diffstat (limited to 'src')
-rw-r--r-- | src/tool_writeout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tool_writeout.c b/src/tool_writeout.c index 8b709cbe3..6e94afe42 100644 --- a/src/tool_writeout.c +++ b/src/tool_writeout.c @@ -126,7 +126,7 @@ void ourWriteOut(CURL *curl, struct OutStruct *outs, const char *writeinfo) keepit = *end; *end = 0; /* zero terminate */ for(i = 0; replacements[i].name; i++) { - if(curl_strcasecompare(ptr, replacements[i].name)) { + if(curl_strequal(ptr, replacements[i].name)) { match = TRUE; switch(replacements[i].id) { case VAR_EFFECTIVE_URL: |