mirror of
https://github.com/curl/curl.git
synced 2026-08-25 12:43:37 +03:00
src: stop overriding system printf symbols
Also:
- tool_operate: use the socket printf mask, drop cast.
Follow-up to 4deea9396b #18814
Closes #18844
This commit is contained in:
parent
34ad78da89
commit
db98daab05
25 changed files with 203 additions and 207 deletions
|
|
@ -156,7 +156,7 @@ int parseconfig(const char *filename)
|
|||
*line++ = '\0'; /* null-terminate, we have a local copy of the data */
|
||||
|
||||
#ifdef DEBUG_CONFIG
|
||||
fprintf(tool_stderr, "GOT: %s\n", option);
|
||||
curl_mfprintf(tool_stderr, "GOT: %s\n", option);
|
||||
#endif
|
||||
|
||||
/* pass spaces and separator(s) */
|
||||
|
|
@ -204,7 +204,7 @@ int parseconfig(const char *filename)
|
|||
}
|
||||
|
||||
#ifdef DEBUG_CONFIG
|
||||
fprintf(tool_stderr, "PARAM: \"%s\"\n",(param ? param : "(null)"));
|
||||
curl_mfprintf(tool_stderr, "PARAM: \"%s\"\n",(param ? param : "(null)"));
|
||||
#endif
|
||||
res = getparameter(option, param, &usedarg, config);
|
||||
config = global->last;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue