Changeset 71787 in vbox for trunk/src/VBox/Main
- Timestamp:
- Apr 9, 2018 4:03:51 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
r71785 r71787 2606 2606 2607 2607 if (fFlags) 2608 return setError(E_NOTIMPL, tr("Flag(s) not yet implemented")); 2608 { 2609 if ( !(fFlags & FileCopyFlag_NoReplace) 2610 && !(fFlags & FileCopyFlag_FollowLinks) 2611 && !(fFlags & FileCopyFlag_Update)) 2612 { 2613 return setError(E_NOTIMPL, tr("Invalid / not (yet) implemented flag(s) specified")); 2614 } 2615 } 2609 2616 2610 2617 HRESULT hrc = i_isReadyExternal(); … … 2686 2693 2687 2694 if (fFlags) 2688 return setError(E_NOTIMPL, tr("Flag(s) not yet implemented")); 2695 { 2696 if ( !(fFlags & FileCopyFlag_NoReplace) 2697 && !(fFlags & FileCopyFlag_FollowLinks) 2698 && !(fFlags & FileCopyFlag_Update)) 2699 { 2700 return setError(E_NOTIMPL, tr("Invalid / not (yet) implemented flag(s) specified")); 2701 } 2702 } 2689 2703 2690 2704 HRESULT hrc = i_isReadyExternal();
Note:
See TracChangeset
for help on using the changeset viewer.