[SCM] PostGIS branch master updated. 3.5.0-23-g44f50df6e

git at osgeo.org git at osgeo.org
Sun Oct 20 19:58:39 PDT 2024


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".

The branch, master has been updated
       via  44f50df6e38f710ca4ef412fb281152b89cd5b5f (commit)
      from  224839693c2988c8ba76e5682c68ac7e6b27911e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 44f50df6e38f710ca4ef412fb281152b89cd5b5f
Author: Regina Obe <lr at pcorp.us>
Date:   Sun Oct 20 22:57:33 2024 -0400

    FIX copy paste error
     in postgis_proj_compiled_version
    
    References #5800 for PostGIS 3.6.0

diff --git a/postgis/lwgeom_transform.c b/postgis/lwgeom_transform.c
index 4786474b2..df9cf4e4d 100644
--- a/postgis/lwgeom_transform.c
+++ b/postgis/lwgeom_transform.c
@@ -237,8 +237,8 @@ Datum postgis_proj_compiled_version(PG_FUNCTION_ARGS)
     ver,
     "%d.%d.%d",
     (POSTGIS_PROJ_VERSION/10000),
-    ((POSTGIS_GEOS_VERSION%10000)/100),
-    ((POSTGIS_GEOS_VERSION)%100)
+    ((POSTGIS_PROJ_VERSION%10000)/100),
+    ((POSTGIS_PROJ_VERSION)%100)
   );
 
   result = cstring_to_text(ver);

-----------------------------------------------------------------------

Summary of changes:
 postgis/lwgeom_transform.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list