Changeset 77500 in vbox for trunk/src/VBox/Main/src-client/GuestSessionImplTasks.cpp
- Timestamp:
- Feb 28, 2019 11:13:24 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 129095
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestSessionImplTasks.cpp
r77499 r77500 1563 1563 1564 1564 /* Create the root directory. */ 1565 if (pList->mSourceSpec.enmType == FsObjType_Directory) 1565 if ( pList->mSourceSpec.enmType == FsObjType_Directory 1566 && pList->mSourceSpec.fDryRun == false) 1566 1567 { 1567 1568 rc = directoryCreateOnHost(pList->mDstRootAbs.c_str(), fDirMode, fDirCreate, fCopyIntoExisting); … … 1594 1595 LogFlowFunc(("Directory '%s': %s -> %s\n", pEntry->strPath.c_str(), strSrcAbs.c_str(), strDstAbs.c_str())); 1595 1596 if (!pList->mSourceSpec.fDryRun) 1596 {1597 1597 rc = directoryCreateOnHost(strDstAbs.c_str(), fDirMode, fDirCreate, fCopyIntoExisting); 1598 if (RT_FAILURE(rc))1599 break;1600 }1601 1598 break; 1602 1599 … … 1807 1804 fFollowSymlinks = pList->mSourceSpec.Type.Dir.fFollowSymlinks; 1808 1805 1809 rc = directoryCreateOnGuest(pList->mDstRootAbs.c_str(), DirectoryCreateFlag_None, fDirMode, 1810 pList->mSourceSpec.Type.Dir.fFollowSymlinks, fCopyIntoExisting); 1811 if (RT_FAILURE(rc)) 1812 break; 1806 if (pList->mSourceSpec.fDryRun == false) 1807 { 1808 rc = directoryCreateOnGuest(pList->mDstRootAbs.c_str(), DirectoryCreateFlag_None, fDirMode, 1809 fFollowSymlinks, fCopyIntoExisting); 1810 if (RT_FAILURE(rc)) 1811 break; 1812 } 1813 1813 } 1814 1814 else if (pList->mSourceSpec.enmType == FsObjType_File)
Note:
See TracChangeset
for help on using the changeset viewer.