Changeset 1354 for trunk/dll/seeall.c
- Timestamp:
- Dec 25, 2008, 11:43:34 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/dll/seeall.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/seeall.c
r1335 r1354 613 613 INT type; 614 614 FILESTATUS4L fs4; 615 BOOL isnewer, existed ;615 BOOL isnewer, existed, fResetVerify = FALSE; 616 616 617 617 for (x = 0; list[x]; x++) { … … 731 731 message); 732 732 if (fRealIdle) 733 priority_idle(); 733 priority_idle(); 734 if (fVerify && (driveflags[toupper(*list[x]) - 'A'] & DRIVE_WRITEVERIFYOFF || 735 driveflags[toupper(*newname) - 'A'] & DRIVE_WRITEVERIFYOFF)) { 736 DosSetVerify(FALSE); 737 fResetVerify = TRUE; 738 } 734 739 if (plen) { 735 740 /* make directory/ies, if required */ … … 745 750 } 746 751 } 747 rc = docopyf(type, list[x], "%s", newname); 752 rc = docopyf(type, list[x], "%s", newname); 753 if (fResetVerify) { 754 DosSetVerify(fVerify); 755 fResetVerify = FALSE; 756 } 748 757 priority_normal(); 749 758 if (rc) {
Note:
See TracChangeset
for help on using the changeset viewer.
