Changeset 33927 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Nov 10, 2010 9:16:03 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp
r33924 r33927 1424 1424 { 1425 1425 char strTemp[RTPATH_MAX]; 1426 rc = RTPathAppPrivateNoArch(strTemp, sizeof(strTemp));1427 AssertRC( rc);1426 vrc = RTPathAppPrivateNoArch(strTemp, sizeof(strTemp)); 1427 AssertRC(vrc); 1428 1428 Utf8Str Utf8Src1 = Utf8Str(strTemp).append("/VBoxGuestAdditions.iso"); 1429 1429 1430 rc = RTPathExecDir(strTemp, sizeof(strTemp));1431 AssertRC( rc);1430 vrc = RTPathExecDir(strTemp, sizeof(strTemp)); 1431 AssertRC(vrc); 1432 1432 Utf8Str Utf8Src2 = Utf8Str(strTemp).append("/additions/VBoxGuestAdditions.iso"); 1433 1433 … … 1440 1440 { 1441 1441 RTMsgError("Source could not be determined! Please use --source to specify a valid source.\n"); 1442 rc = VERR_FILE_NOT_FOUND;1442 vrc = VERR_FILE_NOT_FOUND; 1443 1443 } 1444 1444 } … … 1446 1446 { 1447 1447 RTMsgError("Source \"%s\" does not exist!\n", Utf8Source.c_str()); 1448 rc = VERR_FILE_NOT_FOUND;1449 } 1450 1451 if (RT_SUCCESS( rc))1448 vrc = VERR_FILE_NOT_FOUND; 1449 } 1450 1451 if (RT_SUCCESS(vrc)) 1452 1452 { 1453 1453 if (fVerbose)
Note:
See TracChangeset
for help on using the changeset viewer.