Index: /trunk/src/VBox/HostDrivers/Support/SUPR3HardenedMain.cpp
===================================================================
--- /trunk/src/VBox/HostDrivers/Support/SUPR3HardenedMain.cpp	(revision 16050)
+++ /trunk/src/VBox/HostDrivers/Support/SUPR3HardenedMain.cpp	(revision 16051)
@@ -675,4 +675,5 @@
      * Do _not_ perform any capability-related system calls for root processes
      * (leaving g_uCaps at 0).
+     * (Hint: getuid gets the real user id, not the efficient.)
      */
     if (getuid() != 0)
@@ -685,5 +686,5 @@
         pszOpt = getenv("VBOX_HARD_CAP_NET_RAW");
         if (   !pszOpt
-                || memcmp(pszOpt, "0", sizeof("0")) != 0)
+            || memcmp(pszOpt, "0", sizeof("0")) != 0)
             g_uCaps = CAP_TO_MASK(CAP_NET_RAW);
 
@@ -695,5 +696,5 @@
         pszOpt = getenv("VBOX_HARD_CAP_NET_BIND_SERVICE");
         if (   pszOpt
-                && memcmp(pszOpt, "0", sizeof("0")) != 0)
+            && memcmp(pszOpt, "0", sizeof("0")) != 0)
             g_uCaps |= CAP_TO_MASK(CAP_NET_BIND_SERVICE);
     }
