diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2022-02-12 19:04:02 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2022-02-12 19:04:06 +0100 |
| commit | 0f4509430517b5fd5f411e4c47e51971cbdafce3 (patch) | |
| tree | 9f5e5e679159caa91fbcf2fae9563a15ba6a203f /src/ctx.cpp | |
| parent | a9ce8aa28f0ccf775f238b2ca1bafca0c7616bcf (diff) | |
| download | PROJ-0f4509430517b5fd5f411e4c47e51971cbdafce3.tar.gz PROJ-0f4509430517b5fd5f411e4c47e51971cbdafce3.zip | |
proj.ini: add a 'ca_bundle_path' variable
Cf thread https://lists.osgeo.org/pipermail/gdal-dev/2022-February/thread.html#55391
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 |
