[mapserver-commits] r11749 - branches/branch-6-0/mapserver

svn at osgeo.org svn at osgeo.org
Mon May 23 03:37:23 EDT 2011


Author: unicoletti
Date: 2011-05-23 00:37:23 -0700 (Mon, 23 May 2011)
New Revision: 11749

Modified:
   branches/branch-6-0/mapserver/mapsymbol.c
Log:
porting of fix for #3885: write SYMBOLSET/END when saving symbols file

Modified: branches/branch-6-0/mapserver/mapsymbol.c
===================================================================
--- branches/branch-6-0/mapserver/mapsymbol.c	2011-05-23 07:24:18 UTC (rev 11748)
+++ branches/branch-6-0/mapserver/mapsymbol.c	2011-05-23 07:37:23 UTC (rev 11749)
@@ -750,7 +750,9 @@
     stream = fopen(filename, "w");
     if (stream)
     {
+	fprintf(stream, "SYMBOLSET\n");
         retval = msSaveSymbolSetStream(symbolset, stream);
+	fprintf(stream, "END\n");
         fclose(stream);
     }
     else 



More information about the mapserver-commits mailing list