Changeset 39905 in vbox for trunk/src/VBox/Main/src-client/GuestCtrlImplDir.cpp
- Timestamp:
- Jan 30, 2012 12:41:49 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestCtrlImplDir.cpp
r39843 r39905 250 250 break; 251 251 252 case VERR_ FILE_NOT_FOUND:252 case VERR_PATH_NOT_FOUND: 253 253 *aExists = FALSE; 254 254 break; … … 497 497 const char *pszFsType = stdOut[0].GetString("ftype"); 498 498 if (!pszFsType) /* Attribute missing? */ 499 rc = VERR_ NOT_FOUND;499 rc = VERR_PATH_NOT_FOUND; 500 500 if ( RT_SUCCESS(rc) 501 501 && strcmp(pszFsType, "d")) /* Directory? */ 502 502 { 503 rc = VERR_ FILE_NOT_FOUND;503 rc = VERR_PATH_NOT_FOUND; 504 504 /* This is not critical for Main, so don't set hr -- 505 505 * we will take care of rc then. */
Note:
See TracChangeset
for help on using the changeset viewer.