Changeset 3abff5c in nscp


Ignore:
Timestamp:
06/25/08 07:21:46 (5 years ago)
Author:
Michael Medin <michael@…>
Branches:
master, 0.4.0, 0.4.1, 0.4.2, stable
Children:
c165d1d
Parents:
5fda37e
Message:

2008-06-25 MickeM

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • changelog

    r5fda37e r3abff5c  
    55 * Improved socket performance (would be nice if we could be used as a "hub") 
    66 * "The message is blocked by User Interface Privilege Isolation, Administrative applications that need to see it can allow it through by calling ChangeWindowMessageFilter after making sure the necessary security precautions are in place. " 
     7 
     82008-06-25 MickeM 
     9 * Fixed issue with CheckDriveSize and CheckAllOthers (#188) 
    710 
    8112008-06-24 MickeM 
  • modules/CheckDisk/CheckDisk.cpp

    re380ffe r3abff5c  
    205205          for (std::list<DriveContainer>::const_iterator pit = drives.begin();pit!=drives.end();++pit) { 
    206206            DriveContainer drive = (*pit); 
    207             if (drive.data == drv) 
     207            if (_wcsicmp(drive.data.substr(0,1).c_str(), drv.substr(0,1).c_str())==0) 
    208208              bFound = true; 
    209209          } 
Note: See TracChangeset for help on using the changeset viewer.