Changeset 283


Ignore:
Timestamp:
May 15, 2005, 9:51:59 PM (20 years ago)
Author:
pr
Message:

Case-insensitive compare for USER and SYSTEM in CLEARPROFILE

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/cppbase/bs_config.cpp

    r279 r283  
    18221822        _ustrProfile.assignUtf8(pcszClearProfile, pFirstBackslash);
    18231823
    1824         if (   _ustrProfile.compareUtf8("USER")
    1825             && _ustrProfile.compareUtf8("SYSTEM")
     1824        // V1.0.7 (2005-05-15) [pr]: Changed to case-insensitive compare as there are
     1825        // a few broken packages out there
     1826        if (   _ustrProfile.compareUtf8I("USER")
     1827            && _ustrProfile.compareUtf8I("SYSTEM")
    18261828           )
    18271829        {
Note: See TracChangeset for help on using the changeset viewer.