VirtualBox

Ignore:
Timestamp:
Jan 19, 2009 5:50:03 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
41747
Message:

SUPR3HardenedMain: comment.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/SUPR3HardenedMain.cpp

    r16050 r16051  
    675675     * Do _not_ perform any capability-related system calls for root processes
    676676     * (leaving g_uCaps at 0).
     677     * (Hint: getuid gets the real user id, not the efficient.)
    677678     */
    678679    if (getuid() != 0)
     
    685686        pszOpt = getenv("VBOX_HARD_CAP_NET_RAW");
    686687        if (   !pszOpt
    687                 || memcmp(pszOpt, "0", sizeof("0")) != 0)
     688            || memcmp(pszOpt, "0", sizeof("0")) != 0)
    688689            g_uCaps = CAP_TO_MASK(CAP_NET_RAW);
    689690
     
    695696        pszOpt = getenv("VBOX_HARD_CAP_NET_BIND_SERVICE");
    696697        if (   pszOpt
    697                 && memcmp(pszOpt, "0", sizeof("0")) != 0)
     698            && memcmp(pszOpt, "0", sizeof("0")) != 0)
    698699            g_uCaps |= CAP_TO_MASK(CAP_NET_BIND_SERVICE);
    699700    }
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette