- Timestamp:
- Oct 5, 2015 8:56:02 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceAutoMount.cpp
r58029 r58030 332 332 if (r == 0) 333 333 { 334 VGSvcVerbose(0, "vbsvcAutoMountWorker: Shared folder '%s' was mounted to '%s'\n", 335 pszShareName, pszMountPoint); 336 337 r = vbsfmount_complete(pszShareName, pszMountPoint, flags, pOpts); 334 VGSvcVerbose(0, "vbsvcAutoMountWorker: Shared folder '%s' was mounted to '%s'\n", pszShareName, pszMountPoint); 335 336 r = vbsfmount_complete(pszShareName, pszMountPoint, fFlags, pOpts); 338 337 switch (r) 339 338 { … … 387 386 strcpy(mntinf.name, pszMountPoint + cchCWD); 388 387 } 389 r = mount(NULL, pszMountPoint, "vboxsf", f lags, &mntinf);388 r = mount(NULL, pszMountPoint, "vboxsf", fFlags, &mntinf); 390 389 } 391 390 if (errno == EPROTO) … … 401 400 mntinf_old.gid = mntinf.gid; 402 401 mntinf_old.ttl = mntinf.ttl; 403 r = mount(NULL, pszMountPoint, "vboxsf", f lags, &mntinf_old);402 r = mount(NULL, pszMountPoint, "vboxsf", fFlags, &mntinf_old); 404 403 } 405 404 if (r == -1) /* Was there some error from one of the tries above? */
Note:
See TracChangeset
for help on using the changeset viewer.