summaryrefslogtreecommitdiff
path: root/curl/curl/tool_main.c
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2023-03-13 19:30:11 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2023-03-13 19:40:29 +0300
commit46b6053f6dea5968ed20493b69f3daf0a4a05237 (patch)
treec98f025b9bc43eefaa84948dfa4d44eb49d5dc67 /curl/curl/tool_main.c
parent513e2c27741e1243c4a5f714e7b35fa6f62aacf5 (diff)
Upgrade to 7.88.1
That in particular fixes CVE-2023-23914 CVE-2023-23915 CVE-2023-23916.
Diffstat (limited to 'curl/curl/tool_main.c')
-rw-r--r--curl/curl/tool_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/curl/curl/tool_main.c b/curl/curl/tool_main.c
index 9b8d498..0eb4e6d 100644
--- a/curl/curl/tool_main.c
+++ b/curl/curl/tool_main.c
@@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -194,7 +194,7 @@ static CURLcode main_init(struct GlobalConfig *config)
#endif
/* Initialise the global config */
- config->showerror = -1; /* Will show errors */
+ config->showerror = FALSE; /* show errors when silent */
config->errors = stderr; /* Default errors to stderr */
config->styled_output = TRUE; /* enable detection */
config->parallel_max = PARALLEL_DEFAULT;