mirror of
https://github.com/mirror/wget.git
synced 2026-08-19 09:23:27 +08:00
* src/metalink.c: Specify 'rb' as mode to open file
This commit is contained in:
committed by
Giuseppe Scrivano
parent
3eddf5c173
commit
bf56bf4560
@@ -168,7 +168,7 @@ retrieve_from_metalink (const metalink_t* metalink)
|
||||
FILE *local_file;
|
||||
|
||||
/* Check the digest. */
|
||||
local_file = fopen (filename, "r");
|
||||
local_file = fopen (filename, "rb");
|
||||
if (!local_file)
|
||||
{
|
||||
logprintf (LOG_NOTQUIET, _("Could not open downloaded file.\n"));
|
||||
|
||||
Reference in New Issue
Block a user