Changeset 70 for trunk/dll/treecnr.c


Ignore:
Timestamp:
Nov 5, 2003, 2:18:25 AM (22 years ago)
Author:
root
Message:

Add JFS and FAT32 support

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/treecnr.c

    r36 r70  
    77
    88  Copyright (c) 1993-98 M. Kimes
    9   Copyright (c) 2001, 2002 Steven H.Levine
     9  Copyright (c) 2001, 2003 Steven H.Levine
    1010
    1111  Revisions     16 Oct 02 SHL - Handle large partitions
     12                11 Jun 03 SHL - Add JFS and FAT32 support
    1213
    1314***********************************************************************/
     
    18351836
    18361837          case CN_ENTER:
    1837             if(mp2) {
    1838            
     1838            if(mp2)
     1839            {
    18391840              PCNRITEM pci = (PCNRITEM)((PNOTIFYRECORDENTER)mp2)->pRecord;
    18401841
     
    20412042                                    DRIVE_NOTWRITEABLE |
    20422043                                    DRIVE_CDROM);
    2043                 if(strcmp(FileSystem,HPFS) && strcmp(FileSystem,CDFS) &&
    2044                    strcmp(FileSystem,HPFS386))
     2044                if (strcmp(FileSystem,HPFS) &&
     2045                    strcmp(FileSystem,JFS) &&
     2046                    strcmp(FileSystem,CDFS) &&
     2047                    strcmp(FileSystem,FAT32) &&
     2048                    strcmp(FileSystem,HPFS386))
     2049                {
    20452050                  driveflags[x] |= DRIVE_NOLONGNAMES;
     2051                }
    20462052                if(!strcmp(FileSystem,CBSIFS)) {
    20472053                  driveflags[x] |= DRIVE_ZIPSTREAM;
Note: See TracChangeset for help on using the changeset viewer.