Changeset 105898 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Aug 29, 2024 8:46:43 AM (6 months ago)
- svn:sync-xref-src-repo-rev:
- 164618
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceToolBox.cpp
r99739 r105898 997 997 { 998 998 if ( RTFS_IS_FILE(objInfo.Attr.fMode) 999 || ( RTFS_IS_SYMLINK(objInfo.Attr.fMode) 1000 && (fFlags & VBOXSERVICETOOLBOXLSFLAG_SYMLINKS))) 1001 { 999 || RTFS_IS_SYMLINK(objInfo.Attr.fMode)) 1002 1000 rc2 = vgsvcToolboxPrintFsInfo(pszPath, strlen(pszPath), fOutputFlags, NULL, &IdCache, &objInfo); 1003 if (RT_SUCCESS(rc)) /* Keep initial failing rc. */1004 rc = rc2;1005 }1006 1001 else if (RTFS_IS_DIRECTORY(objInfo.Attr.fMode)) 1007 {1008 1002 rc2 = vgsvcToolboxLsHandleDir(pszPath, fFlags, fOutputFlags, &IdCache); 1009 if (RT_SUCCESS(rc)) /* Keep initial failing rc. */ 1010 rc = rc2; 1011 } 1003 if (RT_SUCCESS(rc)) /* Keep initial failing rc. */ 1004 rc = rc2; 1012 1005 } 1013 1006 else
Note:
See TracChangeset
for help on using the changeset viewer.