Changeset 520

Show
Ignore:
Timestamp:
04/28/08 18:01:22 (2 months ago)
Author:
krobillard
Message:

Fixed ur_findString() when not matching case.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/thune/series.c

    r513 r520  
    27882788        while( it != end ) 
    27892789        { 
    2790             if( *it == *pat
     2790            if( ur_toLower(*it) == ur_toLower(*pat)
    27912791            { 
    27922792                const char* sit = it;