Changeset 44594 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Feb 8, 2013 8:53:41 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 83672
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/linux/SUPDrv-linux.c
r44528 r44594 485 485 #ifdef VBOX_WITH_HARDENING 486 486 /* 487 * Only root is allowed to access the device, enforce it! 488 */ 489 if (vboxdrvLinuxEuid() != 0 /* root */ ) 487 * Only root is allowed to access the unrestricted device, enforce it! 488 */ 489 if ( fUnrestricted 490 && vboxdrvLinuxEuid() != 0 /* root */ ) 490 491 { 491 492 Log(("VBoxDrvLinuxCreate: euid=%d, expected 0 (root)\n", vboxdrvLinuxEuid()));
Note:
See TracChangeset
for help on using the changeset viewer.