Changeset 4004 in vbox
- Timestamp:
- Aug 2, 2007 12:47:09 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedFolders/vbsf.cpp
r4002 r4004 919 919 } 920 920 else 921 /* Note: In Linux we sometimes get VERR_PATH_NOT_FOUND when only the file is not present (sigh) */ 922 if (rc == VERR_FILE_NOT_FOUND || rc == VERR_PATH_NOT_FOUND) 921 if (rc == VERR_FILE_NOT_FOUND) 923 922 { 924 923 Log2(("pParms->CreateFlags = %x\n", pParms->CreateFlags)); … … 975 974 } 976 975 } 976 } 977 else 978 if (rc == VERR_PATH_NOT_FOUND) 979 { 980 rc = VINF_SUCCESS; 981 982 pParms->Result = SHFL_PATH_NOT_FOUND; 977 983 } 978 984
Note:
See TracChangeset
for help on using the changeset viewer.