Changeset 62564 in vbox for trunk/src/VBox/Runtime/common/path
- Timestamp:
- Jul 26, 2016 2:43:03 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109133
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/path/RTPathGlob.cpp
r62477 r62564 459 459 PRTPATHMATCHCACHE pCache) 460 460 { 461 RT_NOREF_PV(pCache); 462 461 463 /* 462 464 * Query the PATH value. … … 1650 1652 if (!(pGlob->fFlags & (RTPATHGLOB_F_NO_DIRS | RTPATHGLOB_F_ONLY_DIRS))) 1651 1653 return true; 1652 return RT_BOOL(pGlob->fFlags & RTPATHGLOB_F_ONLY_DIRS) == RTFS_IS_DIRECTORY( pGlob->u.ObjInfo.Attr.fMode);1654 return RT_BOOL(pGlob->fFlags & RTPATHGLOB_F_ONLY_DIRS) == RTFS_IS_DIRECTORY(fMode); 1653 1655 } 1654 1656 … … 1670 1672 { 1671 1673 /** @todo implement multi subdir matching. */ 1674 RT_NOREF_PV(pGlob); 1675 RT_NOREF_PV(offPath); 1676 RT_NOREF_PV(iStarStarComp); 1677 RT_NOREF_PV(offStarStarPath); 1672 1678 return VERR_PATH_MATCH_FEATURE_NOT_IMPLEMENTED; 1673 1679 }
Note:
See TracChangeset
for help on using the changeset viewer.