Changeset 1480 for trunk/dll/init.c


Ignore:
Timestamp:
Nov 22, 2009, 11:58:49 PM (16 years ago)
Author:
Gregg Young
Message:

Fix failure to correctly check for large file support in FindSwapperDat fall back code minor streamling. Add LVM.EXE to partition submenu. Stop using xDosQueryAppType where the file name it is passed is already a local stack variable. Correct a typo in several file header comments.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/init.c

    r1479 r1480  
    8181  06 Jun 09 GKY Add option to show file system type or drive label in tree
    8282  28 Jun 09 GKY Added AddBackslashToPath() to remove repeatative code.
    83   12 Jul 09 GKY Add xDosQueryAppType and xDoxAlloc... to allow FM/2 to load in high memory
     83  12 Jul 09 GKY Add xDosQueryAppType and xDosAlloc... to allow FM/2 to load in high memory
    8484  22 Jul 09 GKY Code changes to use semaphores to serialize drive scanning
    8585  22 Jul 09 GKY Fix failure to restore the notebook setting for saving container states or not
     
    8888                that has a broken MDOS install.
    8989  15 Nov 09 GKY Add more PCSZs
     90  22 Nov 09 GKY Fix FindSwapperDat so the check for large file support actually occurs if the
     91                fall back to config.sys is used to find it; use bstripcr to streamline code.
    9092
    9193***********************************************************************/
     
    429431          if (*p == '=') {
    430432            p++;
    431             stripcr(p);
    432             rstrip(p);
    433             while (*p == ' ')
    434               p++;
     433            bstripcr(p);
    435434            if (*p == '\"') {
    436435              p++;
     
    456455                                FILE_NORMAL | FILE_ARCHIVED |
    457456                                FILE_HIDDEN | FILE_SYSTEM | FILE_READONLY,
    458                                 &ffb, sizeof(ffb), &nm, FIL_STANDARD);
     457                                &ffb, sizeof(ffb), &nm, FIL_STANDARDL);
    459458              if (rc){
    460459                FILEFINDBUF3 ffb;
Note: See TracChangeset for help on using the changeset viewer.