[mapserver-commits] r8545 - trunk/mapserver

svn at osgeo.org svn at osgeo.org
Thu Feb 12 19:37:18 EST 2009


Author: assefa
Date: 2009-02-12 19:37:18 -0500 (Thu, 12 Feb 2009)
New Revision: 8545

Modified:
   trunk/mapserver/mapfile.c
   trunk/mapserver/mapows.c
Log:
correct build waring #473

Modified: trunk/mapserver/mapfile.c
===================================================================
--- trunk/mapserver/mapfile.c	2009-02-13 00:01:37 UTC (rev 8544)
+++ trunk/mapserver/mapfile.c	2009-02-13 00:37:18 UTC (rev 8545)
@@ -1083,13 +1083,13 @@
 
 
 /************************************************************************/
-/*                         msLoadProjectionStringESPG                   */
+/*                         msLoadProjectionStringEPSG                   */
 /*                                                                      */
 /*      Checks fro EPSG type projection and set the axes for a          */
 /*      certain code ranges.                                            */
 /*      Use for now in WMS 1.3.0                                        */
 /************************************************************************/
-int msLoadProjectionStringESPG(projectionObj *p, char *value)
+int msLoadProjectionStringEPSG(projectionObj *p, char *value)
 {
     p->gt.need_geotransform = MS_FALSE;
     

Modified: trunk/mapserver/mapows.c
===================================================================
--- trunk/mapserver/mapows.c	2009-02-13 00:01:37 UTC (rev 8544)
+++ trunk/mapserver/mapows.c	2009-02-13 00:37:18 UTC (rev 8545)
@@ -1251,7 +1251,7 @@
     if (wms_version >= OWS_1_3_0 && value && strncasecmp(value, "EPSG:", 5) == 0)
     {
         msInitProjection(&proj);
-        if (msLoadProjectionStringESPG(&proj, (char *)value) == 0)
+        if (msLoadProjectionStringEPSG(&proj, (char *)value) == 0)
         {
             msAxisNormalizePoints( &proj, 1, &extent->minx, &extent->miny );
             msAxisNormalizePoints( &proj, 1, &extent->maxx, &extent->maxy );



More information about the mapserver-commits mailing list