mirror of
https://github.com/curl/curl.git
synced 2026-08-03 17:50:28 +03:00
curl: output warning at --verbose output for debug-enabled version
+ a libcurl warning in the debug output Assisted-by: Jay Satiro Ref: https://curl.se/mail/lib-2023-01/0039.html Closes #10278
This commit is contained in:
parent
13991d60ee
commit
7d3b167f48
3 changed files with 23 additions and 0 deletions
|
|
@ -151,10 +151,21 @@ void tool_help(char *category)
|
|||
free(category);
|
||||
}
|
||||
|
||||
static bool is_debug(void)
|
||||
{
|
||||
const char *const *builtin;
|
||||
for(builtin = feature_names; *builtin; ++builtin)
|
||||
if(curl_strequal("debug", *builtin))
|
||||
return TRUE;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
void tool_version_info(void)
|
||||
{
|
||||
const char *const *builtin;
|
||||
if(is_debug())
|
||||
fprintf(stderr, "WARNING: this libcurl is Debug-enabled, "
|
||||
"do not use in production\n\n");
|
||||
|
||||
printf(CURL_ID "%s\n", curl_version());
|
||||
#ifdef CURL_PATCHSTAMP
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue