Changeset 38586 in vbox
- Timestamp:
- Aug 31, 2011 3:07:47 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp
r38561 r38586 1187 1187 rc = showProgress(progress); 1188 1188 CHECK_PROGRESS_ERROR(progress, ("File copy failed")); 1189 if (FAILED(rc)) 1190 vrc = ctrlPrintError(pContext->pGuest, COM_IIDOF(IGuest)); 1189 1191 } 1190 1192 … … 2067 2069 if (!fExists) 2068 2070 { 2069 RTPrintf("Cannot stat for element \"%s\": No such file or directory .\n",2071 RTPrintf("Cannot stat for element \"%s\": No such file or directory\n", 2070 2072 it->first.c_str()); 2071 2073 rcExit = RTEXITCODE_FAILURE; … … 2151 2153 else 2152 2154 { 2153 RTMsgError("Source could not be determined! Please use --source to specify a valid source .\n");2155 RTMsgError("Source could not be determined! Please use --source to specify a valid source\n"); 2154 2156 vrc = VERR_FILE_NOT_FOUND; 2155 2157 } … … 2178 2180 rc = showProgress(progress); 2179 2181 CHECK_PROGRESS_ERROR(progress, ("Guest additions update failed")); 2180 if ( SUCCEEDED(rc) 2181 && fVerbose) 2182 RTPrintf("Guest Additions update successful.\n"); 2182 if (FAILED(rc)) 2183 vrc = ctrlPrintError(guest, COM_IIDOF(IGuest)); 2184 else if ( SUCCEEDED(rc) 2185 && fVerbose) 2186 { 2187 RTPrintf("Guest Additions update successful\n"); 2188 } 2183 2189 } 2184 2190 }
Note:
See TracChangeset
for help on using the changeset viewer.