Changeset 67871 in vbox
- Timestamp:
- Jul 9, 2017 1:47:10 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/fs/isomakercmd.cpp
r67869 r67871 360 360 /** @} */ 361 361 362 /** @name Filteringer 363 * @{ */ 364 /** The trans.tbl filename when enabled. We must not import these files. */ 365 const char *pszTransTbl; 366 /** @} */ 367 362 368 /** Number of items (files, directories, images, whatever) we've added. */ 363 369 uint32_t cItemsAdded; … … 1581 1587 static bool rtFsIsoMakerCmdIsFilteredOut(PRTFSISOMAKERCMDOPTS pOpts, const char *pszDir, const char *pszName, bool fIsDir) 1582 1588 { 1589 /* Ignore trans.tbl files. */ 1590 if ( !fIsDir 1591 && RTStrICmp(pszName, pOpts->pszTransTbl) == 0) 1592 return true; 1593 1583 1594 RT_NOREF(pOpts, pszDir, pszName, fIsDir); 1584 1595 return false; … … 2934 2945 Opts.afNameSpecifiers[0] = RTFSISOMAKERCMDNAME_MAJOR_MASK; 2935 2946 Opts.fDstNamespaces = RTFSISOMAKERCMDNAME_MAJOR_MASK; 2947 Opts.pszTransTbl = "TRANS.TBL"; /** @todo query this below */ 2936 2948 if (phVfsFile) 2937 2949 *phVfsFile = NIL_RTVFSFILE;
Note:
See TracChangeset
for help on using the changeset viewer.