Changeset 33886 in vbox
- Timestamp:
- Nov 9, 2010 10:34:14 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 67534
- Location:
- trunk/src/VBox/Additions/common/VBoxService
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceAutoMount.cpp
r33858 r33886 94 94 95 95 96 /** @todo Integrate into RTFsQueryMountpoint(). */ 96 97 static bool VBoxServiceAutoMountShareIsMounted(const char *pszShare, 97 98 char *pszMountPoint, size_t cbMountPoint) -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceToolBox.cpp
r33885 r33886 31 31 #include <iprt/string.h> 32 32 #include <iprt/stream.h> 33 34 #ifndef RT_OS_WINDOWS 35 #include <sys/stat.h> 36 #endif 33 37 34 38 #include <VBox/VBoxGuestLib.h> … … 194 198 } 195 199 else 196 fileMode |= S_IRWXUGO & ~umaskMode; 200 fileMode |= S_IRWXU | S_IRWXG | S_IRWXO; 201 fileMode &= ~umaskMode; 197 202 #endif 198 203 }
Note:
See TracChangeset
for help on using the changeset viewer.