Cygwin: cygcheck: simplify output when fetching setup.ini

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
Corinna Vinschen 2023-01-29 17:51:42 +01:00
parent c67e6570ee
commit 603f880cb7
1 changed files with 1 additions and 1 deletions

View File

@ -2143,7 +2143,7 @@ maybe_download_setup_ini ()
/* Otherwise, try to open it for writing and fetch from cygwin.com. */ /* Otherwise, try to open it for writing and fetch from cygwin.com. */
if ((fp = fopen (path, "w+")) != NULL) if ((fp = fopen (path, "w+")) != NULL)
{ {
fprintf (stderr, "Fetching %s from cygwin.com...\n", path); fputs ("Fetching setup.ini from cygwin.com...\n", stderr);
if (!fetch_url ("https://cygwin.com/ftp/cygwin/x86_64/setup.ini", fp)) if (!fetch_url ("https://cygwin.com/ftp/cygwin/x86_64/setup.ini", fp))
{ {
fclose (fp); fclose (fp);