[mapserver-commits] r10988 - branches/branch-5-6/mapserver

svn at osgeo.org svn at osgeo.org
Fri Feb 11 23:39:22 EST 2011


Author: warmerdam
Date: 2011-02-11 20:39:22 -0800 (Fri, 11 Feb 2011)
New Revision: 10988

Modified:
   branches/branch-5-6/mapserver/HISTORY.TXT
   branches/branch-5-6/mapserver/mapwcs11.c
Log:
adjust newlines in multipart wcs results (#3672)

Modified: branches/branch-5-6/mapserver/HISTORY.TXT
===================================================================
--- branches/branch-5-6/mapserver/HISTORY.TXT	2011-02-12 04:35:46 UTC (rev 10987)
+++ branches/branch-5-6/mapserver/HISTORY.TXT	2011-02-12 04:39:22 UTC (rev 10988)
@@ -16,6 +16,8 @@
 
 - Fixed possible seg. fault when using "OGR:Label*" special attributes (#3667)
 
+- Fixed bug with newlines around multipart boundaries in wcs multipart (#3672)
+
 Version 5.6.6 (2011-01-17):
 ---------------------------
 

Modified: branches/branch-5-6/mapserver/mapwcs11.c
===================================================================
--- branches/branch-5-6/mapserver/mapwcs11.c	2011-02-12 04:35:46 UTC (rev 10987)
+++ branches/branch-5-6/mapserver/mapwcs11.c	2011-02-12 04:39:22 UTC (rev 10988)
@@ -1235,7 +1235,7 @@
             return msWCSException11(map, "mapserv", "NoApplicableCode", params->version);
         }
 
-        msIO_fprintf( stdout, "--wcs--%c%c", 10, 10 );
+        msIO_fprintf( stdout, "\n--wcs--%c%c", 10, 10 );
         return MS_SUCCESS;
     }
 
@@ -1331,7 +1331,7 @@
         CSLDestroy( all_files );
         msReleaseLock( TLOCK_GDAL );
 
-        msIO_fprintf( stdout, "--wcs--%c%c", 10, 10 );
+        msIO_fprintf( stdout, "\n--wcs--%c%c", 10, 10 );
         return MS_SUCCESS;
     }
 #endif /* def GDAL_DCAP_VIRTUALIO */    



More information about the mapserver-commits mailing list