Changeset 1354 for trunk/dll/treecnr.c


Ignore:
Timestamp:
Dec 25, 2008, 11:43:34 PM (17 years ago)
Author:
Gregg Young
Message:

Added driveflags to over ride write verify for USB removable drives that fail when it is on (Ticket 323); A flag to prevent directory name from being broadcast to drives in the tree cnr prior to a recursive scan of the drive (causes dbl directory names Ticket 321) Add option for multithreaded recursive scan of user selected drives at startup (Ticket 322).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/treecnr.c

    r1352 r1354  
    19451945                                DRIVE_NOLOADICONS | DRIVE_NOLOADSUBJS |
    19461946                                DRIVE_NOLOADLONGS | DRIVE_INCLUDEFILES |
    1947                                 DRIVE_SLOW | DRIVE_NOSTATS);
     1947                                DRIVE_SLOW | DRIVE_NOSTATS |
     1948                                DRIVE_WRITEVERIFYOFF);
    19481949
    19491950              if (removable == 1)
     
    27402741                driveflags[toupper(*pci->pszFileName) - 'A'] &=
    27412742                  (DRIVE_IGNORE | DRIVE_NOPRESCAN | DRIVE_NOLOADICONS |
    2742                    DRIVE_NOLOADSUBJS | DRIVE_NOLOADLONGS | DRIVE_NOSTATS);
     2743                   DRIVE_NOLOADSUBJS | DRIVE_NOLOADLONGS | DRIVE_NOSTATS |
     2744                   DRIVE_WRITEVERIFYOFF);
    27432745                DriveFlagsOne(toupper(*pci->pszFileName) - 'A');
    27442746                driveflag = driveflags[toupper(*pci->pszFileName) - 'A'];
Note: See TracChangeset for help on using the changeset viewer.