Changeset 7568
- Timestamp:
- 05/07/08 00:36:01 (2 months ago)
- Files:
-
- branches/branch-5-0/mapserver/mapshape.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/branch-5-0/mapserver/mapshape.c
r7566 r7568 1461 1461 /* deal with case where sourcename is of the form 'file.shp' */ 1462 1462 sourcename = strdup(shpfile->source); 1463 s = strcasestr(sourcename, ".shp"); 1463 /* TODO: need to handle this case insensitively */ 1464 s = strstr(sourcename, ".shp"); 1464 1465 if( s ) *s = '\0'; 1465 1466
