Changeset 1942


Ignore:
Timestamp:
May 1, 2005, 9:37:14 AM (20 years ago)
Author:
bird
Message:

Missing L.

Location:
trunk/src/emx/src/lib/sys
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/src/lib/sys/b_fsFileModeSetFH.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r1941 r1942  
    156156            else
    157157                info.fsts4L.attrFile = FILE_READONLY;
    158             rc = DosSetFileInfo(fh, FIL_STANDARD, &info, sizeof(info.fsts4L) - sizeof(info.fsts4L.cbList));
     158            rc = DosSetFileInfo(fh, FIL_STANDARDL, &info, sizeof(info.fsts4L) - sizeof(info.fsts4L.cbList));
    159159        }
    160160        else
  • trunk/src/emx/src/lib/sys/b_fsNativeFileModeSet.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r1941 r1942  
    138138        else
    139139            info.fsts4L.attrFile = FILE_READONLY;
    140         rc = DosSetPathInfo((PCSZ)pszNativePath, FIL_STANDARD, &info, sizeof(info.fsts4L) - sizeof(info.fsts4L.cbList), 0);
     140        rc = DosSetPathInfo((PCSZ)pszNativePath, FIL_STANDARDL, &info, sizeof(info.fsts4L) - sizeof(info.fsts4L.cbList), 0);
    141141    }
    142142    else
Note: See TracChangeset for help on using the changeset viewer.