Changeset 77527 in vbox
- Timestamp:
- Mar 1, 2019 12:30:11 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 129130
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
r77279 r77527 2866 2866 source.enmType = FsObjType_File; 2867 2867 source.enmPathStyle = i_getPathStyle(); 2868 source.fDryRun = false; /** @todo Implement support for a dry run. */ 2868 2869 source.Type.File.fCopyFlags = (FileCopyFlag_T)fFlags; 2869 2870 … … 2892 2893 source.enmType = FsObjType_File; 2893 2894 source.enmPathStyle = i_getPathStyle(); 2895 source.fDryRun = false; /** @todo Implement support for a dry run. */ 2894 2896 source.Type.File.fCopyFlags = (FileCopyFlag_T)fFlags; 2895 2897 … … 2956 2958 source.enmType = objData.mType; 2957 2959 source.enmPathStyle = i_getPathStyle(); 2960 source.fDryRun = false; /** @todo Implement support for a dry run. */ 2958 2961 2959 2962 HRESULT hrc; … … 3029 3032 source.enmType = GuestBase::fileModeToFsObjType(objInfo.Attr.fMode); 3030 3033 source.enmPathStyle = i_getPathStyle(); 3034 source.fDryRun = false; /** @todo Implement support for a dry run. */ 3031 3035 3032 3036 HRESULT hrc; … … 3078 3082 source.enmType = FsObjType_Directory; 3079 3083 source.enmPathStyle = i_getPathStyle(); 3084 source.fDryRun = false; /** @todo Implement support for a dry run. */ 3080 3085 source.Type.Dir.fCopyFlags = (DirectoryCopyFlag_T)fFlags; 3081 3086 source.Type.Dir.fRecursive = true; /* Implicit. */ … … 3105 3110 source.enmType = FsObjType_Directory; 3106 3111 source.enmPathStyle = i_getPathStyle(); 3112 source.fDryRun = false; /** @todo Implement support for a dry run. */ 3107 3113 source.Type.Dir.fCopyFlags = (DirectoryCopyFlag_T)fFlags; 3108 3114 source.Type.Dir.fFollowSymlinks = true; /** @todo Add a flag for that in DirectoryCopyFlag_T. Later. */
Note:
See TracChangeset
for help on using the changeset viewer.