Changeset 7568

Show
Ignore:
Timestamp:
05/07/08 00:36:01 (2 months ago)
Author:
pramsey
Message:

Remove strcasestr in deference to MSVC

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/branch-5-0/mapserver/mapshape.c

    r7566 r7568  
    14611461    /* deal with case where sourcename is of the form 'file.shp' */ 
    14621462    sourcename = strdup(shpfile->source); 
    1463     s = strcasestr(sourcename, ".shp"); 
     1463    /* TODO: need to handle this case insensitively */ 
     1464    s = strstr(sourcename, ".shp"); 
    14641465    if( s ) *s = '\0'; 
    14651466