Changeset 11879 in vbox
- Timestamp:
- Aug 31, 2008 11:39:43 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/linux/SUPDrv-linux.c
r11866 r11879 683 683 Log(("VBoxDrvLinuxCreate: pFilp=%p pid=%d/%d %s\n", pFilp, RTProcSelf(), current->pid, current->comm)); 684 684 685 #if def VBOX_WITH_HARDENING685 #ifndef VBOX_WITH_HARDENING 686 686 /* 687 687 * Only root is allowed to access the device, enforce it! … … 690 690 { 691 691 Log(("VBoxDrvLinuxCreate: euid=%d, expected 0 (root)\n", current->euid)); 692 // XXX: nike for whatever reason with this check VBox doesn't work correctly 693 //return -EPERM; 692 return -EPERM; 694 693 } 695 694 #endif /* VBOX_WITH_HARDENING */
Note:
See TracChangeset
for help on using the changeset viewer.