Changeset 16051 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Jan 19, 2009 5:50:03 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 41747
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPR3HardenedMain.cpp
r16050 r16051 675 675 * Do _not_ perform any capability-related system calls for root processes 676 676 * (leaving g_uCaps at 0). 677 * (Hint: getuid gets the real user id, not the efficient.) 677 678 */ 678 679 if (getuid() != 0) … … 685 686 pszOpt = getenv("VBOX_HARD_CAP_NET_RAW"); 686 687 if ( !pszOpt 687 688 || memcmp(pszOpt, "0", sizeof("0")) != 0) 688 689 g_uCaps = CAP_TO_MASK(CAP_NET_RAW); 689 690 … … 695 696 pszOpt = getenv("VBOX_HARD_CAP_NET_BIND_SERVICE"); 696 697 if ( pszOpt 697 698 && memcmp(pszOpt, "0", sizeof("0")) != 0) 698 699 g_uCaps |= CAP_TO_MASK(CAP_NET_BIND_SERVICE); 699 700 }
Note:
See TracChangeset
for help on using the changeset viewer.