Changeset 4006 in vbox
- Timestamp:
- Aug 2, 2007 2:48:29 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 23433
- Location:
- trunk/src/VBox/HostServices/SharedFolders
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedFolders/testcase/tstShflCase.cpp
r3999 r4006 116 116 AssertFailed(); 117 117 118 *ppDir = (PRTDIR)1; 118 119 return VINF_SUCCESS; 119 120 } … … 371 372 rc = vbsfCorrectCasing(pszFullPath, src); 372 373 if (VBOX_FAILURE(rc)) 374 { 375 if (!fEndOfString) 376 *end = RTPATH_DELIMITER; 373 377 break; 378 } 374 379 } 375 380 … … 392 397 if (VBOX_SUCCESS(rc)) 393 398 Log(("New valid path %s\n", pszFullPath)); 399 else 400 Log(("Old invalid path %s\n", pszFullPath)); 394 401 return rc; 395 402 } … … 416 423 strcpy(szTest, "c:\\test dir\\SUBDIR\\"); 417 424 testCase(szTest); 425 strcpy(szTest, "c:\\test dir\\invalid\\SUBDIR\\test.bat"); 426 testCase(szTest); 418 427 return 0; 419 428 } -
trunk/src/VBox/HostServices/SharedFolders/vbsf.cpp
r4004 r4006 423 423 rc = vbsfCorrectCasing(pszFullPath, src); 424 424 if (VBOX_FAILURE(rc)) 425 { 426 if (!fEndOfString) 427 *end = RTPATH_DELIMITER; 425 428 break; 429 } 426 430 } 427 431
Note:
See TracChangeset
for help on using the changeset viewer.