Changeset 1710 for trunk/dll/init.c


Ignore:
Timestamp:
Feb 9, 2014, 9:07:48 PM (12 years ago)
Author:
Gregg Young
Message:

Actually commit the fix for suppressing the readonly warning on temp archive files. Ticket 497

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/init.c

    r1673 r1710  
    588588        strcpy(enddir, ffb.achName);
    589589        if (ffb.attrFile & FILE_DIRECTORY) {
    590           wipeallf("%s\\*", s);
     590          wipeallf(FALSE, "%s\\*", s);
    591591          DosDeleteDir(s);
    592592        }
     
    628628  DosForceDelete(szTempFile);
    629629  if (pTmpDir) {
    630     wipeallf("%s\\*", pTmpDir);
     630    wipeallf(FALSE, "%s\\*", pTmpDir);
    631631    DosDeleteDir(pTmpDir);
    632632  }
     
    789789            if (!strstr(temp, "FM/2") &&
    790790                !strstr(temp, "AV/2")) {
    791               wipeallf("%s\\*", szTempName);
     791              wipeallf(TRUE, "%s\\*", szTempName);
    792792              DosDeleteDir(szTempName);
    793793            }
Note: See TracChangeset for help on using the changeset viewer.