Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

Changeset 37621 for trunk/base/src

Show
Ignore:
Timestamp:
2008-06-15 13:32:58 (5 months ago)
Author:
jmr@…
Message:

Treat port names case-insensitively in filemap. (#11759)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/base/src/pextlib1.0/filemap.c

    r30972 r37621  
    10041004        { 
    10051005                /* it's a leaf. Does the value match? */ 
    1006                 if (strcmp(((SLeaf*) inRoot)->fValue, inValue) == 0) 
     1006                if (strcasecmp(((SLeaf*) inRoot)->fValue, inValue) == 0) 
    10071007                { 
    10081008                        /* It matches. */