Changeset 92879 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Dec 13, 2021 10:14:41 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
r92878 r92879 3395 3395 fFlags |= aFlags[i]; 3396 3396 3397 /** @todo r=bird: This should be: if (fFlags & ~DirectoryCreateFlag_Parents) */ 3398 if (fFlags) 3399 if (!(fFlags & DirectoryCreateFlag_Parents)) 3400 return setError(E_INVALIDARG, tr("Unknown flags (%#x)"), fFlags); 3397 if (fFlags & ~DirectoryCreateFlag_Parents) 3398 return setError(E_INVALIDARG, tr("Unknown flags (%#x)"), fFlags); 3401 3399 } 3402 3400
Note:
See TracChangeset
for help on using the changeset viewer.