mirror of
https://github.com/curl/curl.git
synced 2026-08-05 20:06:15 +03:00
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.
This commit is contained in:
parent
44c53cc38b
commit
8fe4bd0844
4 changed files with 20 additions and 9 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue