- Timestamp:
- Oct 25, 2010 11:38:40 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp
r33411 r33413 1106 1106 { 1107 1107 PDIRECTORYENTRY pNode; 1108 uint32_t uCurObject = 0;1108 uint32_t uCurObject = 1; 1109 1109 RTListForEach(&listToCopy, pNode, DIRECTORYENTRY, Node) 1110 1110 { 1111 1111 if (fVerbose) 1112 RTPrintf("Copying \"%s\" (%u /%u) ...\n",1113 pNode->pszPath, uCurObject + 1, cObjects + 1);1112 RTPrintf("Copying \"%s\" (%u of %u) ...\n", 1113 pNode->pszPath, uCurObject, cObjects); 1114 1114 vrc = ctrlCopyFile(guest, pNode->pszPath, Utf8Dest.c_str(), 1115 1115 Utf8UserName.c_str(), Utf8Password.c_str(), uFlags); 1116 1116 if (RT_FAILURE(vrc)) 1117 1117 break; 1118 uCurObject++; 1118 1119 } 1119 1120 if (RT_SUCCESS(vrc) && fVerbose)
Note:
See TracChangeset
for help on using the changeset viewer.