- Timestamp:
- Nov 8, 2010 3:55:05 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceAutoMount.cpp
r33857 r33858 115 115 while ((getmntent(pFh, &mntTab))) 116 116 { 117 if (!RTStrICmp(mntTab ->mnt_special, pszShare))118 { 119 fMounted = RTStrPrintf(pszMountPoint, cbMountPoint, "%s", pMntEnt->mnt_mountp)117 if (!RTStrICmp(mntTab.mnt_special, pszShare)) 118 { 119 fMounted = RTStrPrintf(pszMountPoint, cbMountPoint, "%s", mntTab.mnt_mountp) 120 120 ? true : false; 121 121 break;
Note:
See TracChangeset
for help on using the changeset viewer.