[mapserver-commits] r13132 - trunk/mapserver/mapcache/util
svn at osgeo.org
svn at osgeo.org
Thu Feb 9 13:22:06 EST 2012
Author: tbonfort
Date: 2012-02-09 10:22:06 -0800 (Thu, 09 Feb 2012)
New Revision: 13132
Modified:
trunk/mapserver/mapcache/util/mapcache_seed.c
Log:
fix clang found syntax error
Modified: trunk/mapserver/mapcache/util/mapcache_seed.c
===================================================================
--- trunk/mapserver/mapcache/util/mapcache_seed.c 2012-02-09 18:13:32 UTC (rev 13131)
+++ trunk/mapserver/mapcache/util/mapcache_seed.c 2012-02-09 18:22:06 UTC (rev 13132)
@@ -455,7 +455,7 @@
tile->z = z;
action = examine_tile(&cmd_ctx, tile);
- if(action == MAPCACHE_CMD_SEED || MAPCACHE_CMD_TRANSFER) {
+ if(action == MAPCACHE_CMD_SEED || action == MAPCACHE_CMD_TRANSFER) {
//current x,y,z needs seeding, add it to the queue
struct seed_cmd *cmd = malloc(sizeof(struct seed_cmd));
cmd->x = x;
More information about the mapserver-commits
mailing list