- Timestamp:
- Apr 24, 2019 5:26:50 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/SharedFolders/driver/path.c
r78280 r78283 284 284 285 285 /* On POSIX systems, the "mkdir" command returns VERR_FILE_NOT_FOUND when 286 doing a recursive directory create. Handle this case. */ 287 case VERR_FILE_NOT_FOUND: 286 doing a recursive directory create. Handle this case. 287 288 bird: We end up here on windows systems too if opening a dir that doesn't 289 exists. Thus, I've changed the SHFL_PATH_NOT_FOUND to SHFL_FILE_NOT_FOUND 290 so that FsPerf is happy. */ 291 case VERR_FILE_NOT_FOUND: /** @todo r=bird: this is a host bug, isn't it? */ 288 292 { 289 pCreateParms->Result = SHFL_ PATH_NOT_FOUND;293 pCreateParms->Result = SHFL_FILE_NOT_FOUND; 290 294 break; 291 295 } … … 307 311 case SHFL_PATH_NOT_FOUND: 308 312 { 309 /* Path to object does not exist. */313 /* Path to the object does not exist. */ 310 314 Log(("VBOXSF: vbsfProcessCreate: Path not found\n")); 311 315 *pulCreateAction = FILE_DOES_NOT_EXIST; … … 327 331 Status = STATUS_UNSUCCESSFUL; 328 332 goto failure; 329 330 break;331 333 } 332 334
Note:
See TracChangeset
for help on using the changeset viewer.