Changeset 75444 in vbox
- Timestamp:
- Nov 14, 2018 10:25:43 AM (6 years ago)
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 2 edited
-
common/VBoxService/VBoxServiceAutoMount.cpp (modified) (2 diffs)
-
solaris/SharedFolders/vboxfs_vfs.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceAutoMount.cpp
r75437 r75444 174 174 #elif defined(RT_OS_SOLARIS) 175 175 /** Dummy mount option that lets us identify mounts that belongs to us. */ 176 static char const g_szTag[] = " ,VBoxService=auto";176 static char const g_szTag[] = "VBoxAutomounter"; 177 177 #endif 178 178 … … 1514 1514 char szOpts[MAX_MNTOPT_STR] = { '\0', }; 1515 1515 ssize_t cchOpts = RTStrPrintf2(szOpts, sizeof(szOpts), 1516 "uid=0,gid=%d,dmode=0770,fmode=0770,dmask=0000,fmask=0000 %s", gidMount, g_szTag);1516 "uid=0,gid=%d,dmode=0770,fmode=0770,dmask=0000,fmask=0000,tag=%s", gidMount, g_szTag); 1517 1517 if (cchOpts <= 0) 1518 1518 { -
trunk/src/VBox/Additions/solaris/SharedFolders/vboxfs_vfs.c
r69500 r75444 81 81 {"fmask", NULL, NULL, MO_HASVALUE, NULL}, 82 82 {"stat_ttl", NULL, NULL, MO_HASVALUE, NULL}, 83 {"fsync", NULL, NULL, 0, NULL} 83 {"fsync", NULL, NULL, 0, NULL}, 84 {"tag", NULL, NULL, MO_HASVALUE, NULL} 84 85 }; 85 86
Note:
See TracChangeset
for help on using the changeset viewer.

