Replace HTTP links with HTTPS for sites with HTTPS versions

This commit is contained in:
Aaron Franke 2021-08-21 20:56:25 -05:00
parent bb1c930a41
commit ae1702bee5
No known key found for this signature in database
GPG key ID: 40A1750B977E56BF
55 changed files with 83 additions and 83 deletions

View file

@ -575,7 +575,7 @@ void ReadBinaryDataArray(char type, uint32_t count, const char *&data, const cha
std::copy(data, end, buff.begin());
} else if (encmode == 1) {
// zlib/deflate, next comes ZIP head (0x78 0x01)
// see http://www.ietf.org/rfc/rfc1950.txt
// see https://www.ietf.org/rfc/rfc1950.txt
z_stream zstream;
zstream.opaque = Z_NULL;