Changeset 6838 in vbox
- Timestamp:
- Feb 7, 2008 8:26:31 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedFolders/vbsf.cpp
r6832 r6838 653 653 case VERR_FILE_NOT_FOUND: 654 654 pParms->Result = SHFL_FILE_NOT_FOUND; 655 656 /* This actually isn't an error, so correct the rc before return later, 657 because the driver (VBoxSF.sys) expects rc = VINF_SUCCESS and checks the result code. */ 658 fNoError = true; 655 659 break; 656 660 case VERR_PATH_NOT_FOUND: 657 661 pParms->Result = SHFL_PATH_NOT_FOUND; 662 663 /* This actually isn't an error, so correct the rc before return later, 664 because the driver (VBoxSF.sys) expects rc = VINF_SUCCESS and checks the result code. */ 665 fNoError = true; 658 666 break; 659 667 case VERR_ALREADY_EXISTS: … … 667 675 pParms->Result = SHFL_FILE_EXISTS; 668 676 669 /* This actually isn't an error, because the file simply already exists,670 so correct the rc before return later, to make the driver (VBoxSF.sys) happy. */677 /* This actually isn't an error, so correct the rc before return later, 678 because the driver (VBoxSF.sys) expects rc = VINF_SUCCESS and checks the result code. */ 671 679 fNoError = true; 672 680 break;
Note:
See TracChangeset
for help on using the changeset viewer.