diff options
author | Max Hilbrunner <mhilbrunner@users.noreply.github.com> | 2021-08-23 15:58:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-23 15:58:54 +0200 |
commit | 583b6a594ab88208d1e78c94e70a2957c316cf64 (patch) | |
tree | 9aac8c191ebc808667dce8b18e61b60db66782c5 /modules/fbx/fbx_parser | |
parent | 88db5417050ff6ffe97ab2716ab2e53c31b07eb4 (diff) | |
parent | ae1702bee5e8b3e6d4e31041b4a593826ac60484 (diff) |
Merge pull request #51971 from aaronfranke/https
Replace HTTP URLs with HTTPS for sites with HTTPS versions
Diffstat (limited to 'modules/fbx/fbx_parser')
-rw-r--r-- | modules/fbx/fbx_parser/FBXParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/fbx/fbx_parser/FBXParser.cpp b/modules/fbx/fbx_parser/FBXParser.cpp index a92b23f4ee..d9ef025a16 100644 --- a/modules/fbx/fbx_parser/FBXParser.cpp +++ b/modules/fbx/fbx_parser/FBXParser.cpp @@ -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; |