Changeset 69941 in vbox for trunk/src/VBox/Runtime/common/fs
- Timestamp:
- Dec 5, 2017 6:14:51 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 119438
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/fs/isomaker.cpp
r69155 r69941 5823 5823 pPX->gid.be = RT_H2BE_U32((uint32_t)pName->gid); 5824 5824 pPX->gid.le = RT_H2LE_U32((uint32_t)pName->gid); 5825 #if 0 /* This is confusing solaris. Looks like it has code assuming inode numbers are block numbers and ends up mistaking files for the root dir. Sigh. */ 5825 5826 pPX->INode.be = RT_H2BE_U32((uint32_t)pName->pObj->idxObj + 1); /* Don't use zero - isoinfo doesn't like it. */ 5826 5827 pPX->INode.le = RT_H2LE_U32((uint32_t)pName->pObj->idxObj + 1); 5828 #else 5829 pPX->INode.be = 0; 5830 pPX->INode.le = 0; 5831 #endif 5827 5832 pbSys += sizeof(*pPX); 5828 5833 cbSys -= sizeof(*pPX);
Note:
See TracChangeset
for help on using the changeset viewer.