Changeset 102650 in vbox for trunk/src/VBox/Runtime/r3/posix/RTFsMountpointsEnum-posix.cpp
- Timestamp:
- Dec 20, 2023 12:38:35 PM (13 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/RTFsMountpointsEnum-posix.cpp
r102647 r102650 49 49 # include <sys/mount.h> 50 50 #endif 51 #if defined(RT_OS_SOLARIS) 52 # include <sys/mnttab.h> 53 #endif 51 54 52 55 #include <iprt/fs.h> … … 85 88 rc = VERR_ACCESS_DENIED; 86 89 #elif defined(RT_OS_SOLARIS) 87 FILE *pFile = fopen( _PATH_MOUNTED, "r");90 FILE *pFile = fopen("/etc/mnttab", "r"); 88 91 if (pFile) 89 92 {
Note:
See TracChangeset
for help on using the changeset viewer.