diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2022-02-14 14:16:27 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-14 14:16:27 +0100 |
| commit | 4db1dd5471ccc6b714699801cacd1774e8ff9c33 (patch) | |
| tree | a5a3b9ec15b277c059afa6a3955688670636751e /src/ctx.cpp | |
| parent | 944efc557af4068be7dcf7c44ca9262516e4cc8a (diff) | |
| parent | 0f4509430517b5fd5f411e4c47e51971cbdafce3 (diff) | |
| download | PROJ-4db1dd5471ccc6b714699801cacd1774e8ff9c33.tar.gz PROJ-4db1dd5471ccc6b714699801cacd1774e8ff9c33.zip | |
Merge pull request #3049 from rouault/proj_ini_ca_bundle_path
proj.ini: add a 'ca_bundle_path' variable
Diffstat (limited to 'src/ctx.cpp')
| -rw-r--r-- | src/ctx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ctx.cpp b/src/ctx.cpp index 5ec10b9e..5b2405cd 100644 --- a/src/ctx.cpp +++ b/src/ctx.cpp @@ -153,7 +153,6 @@ pj_ctx::pj_ctx(const pj_ctx& other) : cpp_context(other.cpp_context ? other.cpp_context->clone(this) : nullptr), use_proj4_init_rules(other.use_proj4_init_rules), epsg_file_exists(other.epsg_file_exists), - ca_bundle_path(other.ca_bundle_path), env_var_proj_lib(other.env_var_proj_lib), file_finder(other.file_finder), file_finder_user_data(other.file_finder_user_data), @@ -163,6 +162,7 @@ pj_ctx::pj_ctx(const pj_ctx& other) : iniFileLoaded(other.iniFileLoaded), endpoint(other.endpoint), networking(other.networking), + ca_bundle_path(other.ca_bundle_path), gridChunkCache(other.gridChunkCache), defaultTmercAlgo(other.defaultTmercAlgo) // END ini file settings |
