diff options
| author | Alan D. Snow <alansnow21@gmail.com> | 2020-04-20 03:03:41 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-20 10:03:41 +0200 |
| commit | 5e3aba396b114fa4bb3cd787acfc000f6792c078 (patch) | |
| tree | 8bb11317ded5f9b9ed62ccf0cdfc31f711213ae7 /src/apps/projinfo.cpp | |
| parent | b16b966b7484efd74a7364bd455ed3015d1009d6 (diff) | |
| download | PROJ-5e3aba396b114fa4bb3cd787acfc000f6792c078.tar.gz PROJ-5e3aba396b114fa4bb3cd787acfc000f6792c078.zip | |
Moved proj_context_get_url_endpoint & proj_context_get_user_writable_directory to proj.h (#2162)
Fixes #2028
Diffstat (limited to 'src/apps/projinfo.cpp')
| -rw-r--r-- | src/apps/projinfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/apps/projinfo.cpp b/src/apps/projinfo.cpp index 85db14e2..ed732aaa 100644 --- a/src/apps/projinfo.cpp +++ b/src/apps/projinfo.cpp @@ -1074,7 +1074,7 @@ int main(int argc, char **argv) { #ifdef CURL_ENABLED if (proj_context_is_network_enabled(nullptr)) { std::cout << "Status: enabled" << std::endl; - std::cout << "URL: " << pj_context_get_url_endpoint(nullptr) + std::cout << "URL: " << proj_context_get_url_endpoint(nullptr) << std::endl; } else { std::cout << "Status: disabled" << std::endl; |
