[mapserver-commits] r12394 - trunk/mapserver/mapcache/src

svn at osgeo.org svn at osgeo.org
Fri Aug 26 07:22:01 EDT 2011


Author: tbonfort
Date: 2011-08-26 04:22:01 -0700 (Fri, 26 Aug 2011)
New Revision: 12394

Modified:
   trunk/mapserver/mapcache/src/services.c
Log:
seeder rewrite using a thread-safe fifo queue. requires apr-util.
thomas.bonfort | 2011-07-03 13:57:21 +0200 (Sun, 03 Jul 2011)

Modified: trunk/mapserver/mapcache/src/services.c
===================================================================
--- trunk/mapserver/mapcache/src/services.c	2011-08-26 11:21:56 UTC (rev 12393)
+++ trunk/mapserver/mapcache/src/services.c	2011-08-26 11:22:01 UTC (rev 12394)
@@ -43,7 +43,7 @@
       if(!service) continue; /* skip an unconfigured service */
       prefixlen = strlen(service->url_prefix);
       if(strncmp(service->url_prefix,pathinfo, prefixlen)) continue; /*skip a service who's prefix does not correspond */
-      if(*(pathinfo+prefixlen)!='/' && *(pathinfo+prefixlen)!='\0') continue; /*we matched the prefix but there are trailing characters*/
+      //if(*(pathinfo+prefixlen)!='/' && *(pathinfo+prefixlen)!='\0') continue; /*we matched the prefix but there are trailing characters*/
       pathinfo += prefixlen; /* advance pathinfo to after the service prefix */
       service->parse_request(ctx,service,request,pathinfo,params,config);
       GC_CHECK_ERROR(ctx);



More information about the mapserver-commits mailing list