From 86b768fce2c9cea1ff1051a32bc0d3e4f7f696d4 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 26 Aug 2021 07:43:34 +0200 Subject: curl: better error message when -O fails to get a good name Fixes #7628 --- src/tool_operate.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/tool_operate.c b/src/tool_operate.c index 74221599d..960f3020a 100644 --- a/src/tool_operate.c +++ b/src/tool_operate.c @@ -950,8 +950,11 @@ static CURLcode single_transfer(struct GlobalConfig *global, if(!per->outfile) { /* extract the file name from the URL */ result = get_url_file_name(&per->outfile, per->this_url); - if(result) + if(result) { + errorf(global, "Failed to extract a sensible file name" + " from the URL to use for storage!\n"); break; + } if(!*per->outfile && !config->content_disposition) { errorf(global, "Remote file name has no length!\n"); result = CURLE_WRITE_ERROR; -- cgit v1.2.1